repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-err2.C
blob
227f519dc19897c10e46e167d04677ebac6a44b4
1
// PR c++/101232
2
// { dg-do compile { target c++11 } }
3
4
struct X {
5
int a;
6
int b;
7
};
8
9
void f() {
10
auto x = X{ 1 2 }; // { dg-error "19:.*probably" }
11
}