
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
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
@import templates_top;
|
|
|
|
template<typename T> class Vector {
|
|
public:
|
|
void push_back(const T&);
|
|
};
|
|
|
|
template<typename T> class List;
|
|
template<> class List<bool> {
|
|
public:
|
|
void push_back(int);
|
|
};
|
|
|
|
namespace N {
|
|
template<typename T> class Set {
|
|
public:
|
|
void insert(T);
|
|
};
|
|
}
|
|
|
|
constexpr unsigned List<int>::*size_right = &List<int>::size;
|
|
List<int> list_right = { 0, 12 };
|
|
typedef List<int> ListInt_right;
|
|
|
|
template <typename T>
|
|
void pendingInstantiationEmit(T) {}
|
|
void triggerPendingInstantiationToo() {
|
|
pendingInstantiationEmit(12);
|
|
}
|
|
|
|
void redeclDefinitionEmit(){}
|
|
|
|
typedef Outer<int>::Inner OuterIntInner_right;
|
|
|
|
int defineListDoubleRight() {
|
|
List<double> ld;
|
|
ld.push_back(0.0);
|
|
return ld.size;
|
|
}
|
|
|
|
template<typename T> struct MergePatternDecl;
|
|
|
|
void outOfLineInlineUseRightF(void (OutOfLineInline<int>::*)() = &OutOfLineInline<int>::f);
|
|
void outOfLineInlineUseRightG(void (OutOfLineInline<int>::*)() = &OutOfLineInline<int>::g);
|
|
void outOfLineInlineUseRightH(void (OutOfLineInline<int>::*)() = &OutOfLineInline<int>::h);
|
|
|
|
inline int *getStaticDataMemberRight() {
|
|
return WithUndefinedStaticDataMember<int[]>::undefined;
|
|
}
|