2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / typeof10.C
blob1b357ad9d7b1e1dfbabd4fa3786a60386f97fb28
1 // PR c++/20552
2 // Origin: Ivan Godard <igodard@pacbell.net>
4 template<int> struct A
6   void foo()
7   {
8     typedef int T;                // { dg-error "previous" }
9     typedef __typeof__(*this) T;  // { dg-error "conflicting" }
10   }