Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / non-dependent7.C
blobee34327ad63b171b2f7ea0a36229956ffadf9ca9
1 // { dg-do compile }
3 // Origin: Giovanni Bajo <giovannibajo@libero.it>
5 // PR c++/13092: ICE taking address of member which is non-dependent
7 struct S
9   int i;
12 template<int S::*p>
13 struct X
14 {};
16 template <class T>
17 struct Foo
19   X<&S::i> x;
22 template struct Foo<void>;