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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
pr27047-default-init-expr-name-conflict.cpp
blob
772db9935c07827ef5d629c4450501c057e74b2b
1
// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s
2
3
template
<
typename T
>
4
struct
A
{
5
// Used to crash when field was named after class.
6
int
A
=
0
;
7
};
8
A
<
int
>
a
;