2012-12-12 06:11:52 +08:00
|
|
|
@import templates_top;
|
2012-10-02 17:09:43 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-10-07 16:02:11 +08:00
|
|
|
constexpr unsigned List<int>::*size_right = &List<int>::size;
|
|
|
|
List<int> list_right = { 0, 12 };
|
|
|
|
typedef List<int> ListInt_right;
|
|
|
|
|
2012-10-02 17:09:43 +08:00
|
|
|
template <typename T>
|
2012-10-02 20:18:46 +08:00
|
|
|
void pendingInstantiationEmit(T) {}
|
2012-10-02 17:09:43 +08:00
|
|
|
void triggerPendingInstantiationToo() {
|
2012-10-02 20:18:46 +08:00
|
|
|
pendingInstantiationEmit(12);
|
2012-10-02 17:09:43 +08:00
|
|
|
}
|
2012-10-02 20:18:46 +08:00
|
|
|
|
|
|
|
void redeclDefinitionEmit(){}
|
2013-09-10 00:55:27 +08:00
|
|
|
|
|
|
|
typedef Outer<int>::Inner OuterIntInner_right;
|
2014-04-19 11:48:30 +08:00
|
|
|
|
|
|
|
int defineListDoubleRight() {
|
|
|
|
List<double> ld;
|
|
|
|
ld.push_back(0.0);
|
|
|
|
return ld.size;
|
|
|
|
}
|
2014-04-24 10:25:27 +08:00
|
|
|
|
2015-08-12 06:00:24 +08:00
|
|
|
inline void defineListLongRight() {
|
|
|
|
List<long> ll;
|
|
|
|
}
|
|
|
|
|
2014-04-24 10:25:27 +08:00
|
|
|
template<typename T> struct MergePatternDecl;
|
2014-05-29 11:15:31 +08:00
|
|
|
|
|
|
|
void outOfLineInlineUseRightF(void (OutOfLineInline<int>::*)() = &OutOfLineInline<int>::f);
|
|
|
|
void outOfLineInlineUseRightG(void (OutOfLineInline<int>::*)() = &OutOfLineInline<int>::g);
|
|
|
|
void outOfLineInlineUseRightH(void (OutOfLineInline<int>::*)() = &OutOfLineInline<int>::h);
|
2014-09-03 10:33:22 +08:00
|
|
|
|
|
|
|
inline int *getStaticDataMemberRight() {
|
|
|
|
return WithUndefinedStaticDataMember<int[]>::undefined;
|
|
|
|
}
|