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
/
SemaCXX
/
aggregate-init-cxx98.cpp
blob
332801f0822cb564911fd49580b126b204fd39ba
1
// RUN: %clang_cc1 -std=c++98 -verify %s
2
3
struct
A
{
4
A
() =
default
;
// expected-warning {{C++11}}
5
int
n
;
6
};
7
A a
= {
0
};