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
[flang] Fix crash in HLFIR generation (#118399)
[llvm-project.git]
/
clang
/
test
/
SemaTemplate
/
enum-forward.cpp
blob
b25c21fc46359e4f0cf928ab2121f65c02f91943
1
// RUN: %clang_cc1 -fsyntax-only -fms-compatibility %s
2
3
template
<
typename T
>
4
struct
X
{
5
enum
E
*
e
;
6
};
7
8
X
<
int
>
xi
;