
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
43 lines
563 B
C++
43 lines
563 B
C++
// RUN: %clang_cc1 -fsyntax-only %s
|
|
|
|
template<typename T, T I, int J>
|
|
struct adder {
|
|
enum {
|
|
value = I + J,
|
|
value2
|
|
};
|
|
};
|
|
|
|
int array1[adder<long, 3, 4>::value == 7? 1 : -1];
|
|
|
|
namespace PR6375 {
|
|
template<typename T>
|
|
void f() {
|
|
enum Enum
|
|
{
|
|
enumerator1 = 0xFFFFFFF,
|
|
enumerator2 = enumerator1 - 1
|
|
};
|
|
|
|
int xb1 = enumerator1;
|
|
int xe1 = enumerator2;
|
|
}
|
|
|
|
template void f<int>();
|
|
}
|
|
|
|
namespace EnumScoping {
|
|
|
|
template <typename T>
|
|
class C {
|
|
enum {
|
|
value = 42
|
|
};
|
|
};
|
|
|
|
void f(int i, C<int>::C c) {
|
|
int value;
|
|
}
|
|
|
|
}
|