repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
SemaTemplate
/
enum-bool.cpp
blob
31a96e3488ed471dd5254627ac0da9a40fa0fc44
1
// %RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o %t
2
3
enum
E
:
bool
{
A
};
4
template
<
E
>
5
struct
S
{
6
struct
Inner
{
7
Inner
() {}
8
};
9
};
10
11
template class
S
<
A
>;