git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129336 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John McCall 2011-04-12 00:59:32 +00:00
Родитель 772afb15e9
Коммит 4955e57cd5
1 изменённых файлов: 8 добавлений и 11 удалений

Просмотреть файл

@ -106,14 +106,11 @@ struct S {
} s;
//PR8760
template <typename T>
struct Foo {
Foo() : ptr(__nullptr) {}
union {
T *ptr;
};
};
Foo<int> f;
//PR8760
template <typename T> struct Foo {
Foo() : ptr(__nullptr) {}
union {
T *ptr;
};
};
Foo<int> f;