[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaTemplate / enum-bool.cpp
blob31a96e3488ed471dd5254627ac0da9a40fa0fc44
1 // %RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o %t
3 enum E : bool { A };
4 template <E>
5 struct S {
6 struct Inner {
7 Inner() {}
8 };
9 };
11 template class S<A>;