forked from OSchip/llvm-project
Fixing a build bot issue with duplicate explicit instantiations.
llvm-svn: 272027
This commit is contained in:
parent
d96ce2a94c
commit
4c4bdba28a
|
@ -26,7 +26,14 @@ struct S {
|
|||
template struct S<int>;
|
||||
template struct S<ip>; // ok
|
||||
template struct S<cip>;
|
||||
template struct S<int *>; // ok
|
||||
|
||||
template <typename Ty>
|
||||
struct U {
|
||||
const Ty *i;
|
||||
const Ty &i2;
|
||||
};
|
||||
|
||||
template struct U<int *>; // ok
|
||||
|
||||
struct T {
|
||||
typedef void (T::*PMF)();
|
||||
|
|
Loading…
Reference in New Issue