Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
006f9353e15a4506baac3ffcaa3ee27963337bf5
/
.
/
clang
/
test
/
SemaTemplate
/
enum-argument.cpp
blob: 101a1d0cd9da13d99b589374835e200073d24435 [
file
] [
log
] [
blame
]
Sebastian Redl
eed3d4c
2009-05-27 19:21:29 +0000
[
diff
] [
blame
]
1
// RUN: clang-cc -fsyntax-only -verify %s
2
3
enum
Enum
{
val
=
1
};
4
template
<
Enum
v
>
struct
C
{
5
typedef
C
<v>
Self
;
6
};
7
template
struct
C
<val>
;