blob: 31a96e3488ed471dd5254627ac0da9a40fa0fc44 [file] [log] [blame]
Richard Trieu94a9ae72015-01-09 00:58:16 +00001// %RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o %t
2
3enum E : bool { A };
4template <E>
5struct S {
6 struct Inner {
7 Inner() {}
8 };
9};
10
11template class S<A>;