blob: 4eb5b0c24cb0e3ac19bb116b51e662c39f106e12 [file] [log] [blame]
Douglas Gregord9949ab2009-08-28 22:03:51 +00001// RUN: clang-cc -fsyntax-only %s
2
3// FIXME: We need to test anonymous structs/unions in templates for real.
4
5template <typename T> class A { struct { }; };
6
7A<int> a0;
8