1 2 3 4 5 6 7 8
// RUN: clang-cc -fsyntax-only %s // FIXME: We need to test anonymous structs/unions in templates for real. template <typename T> class A { struct { }; }; A<int> a0;