1// %RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o %t2 3enum E : bool { A };4template <E>5struct S {6 struct Inner {7 Inner() {}8 };9};10 11template class S<A>;12