repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-ctor2.C
blob
ebacec0cff5a0df3ec8224162519938124144efe
1
// PR c++/83937
2
// { dg-do run { target c++11 } }
3
4
struct S
5
{
6
S(int v = 42) {
7
if (v != int{})
8
__builtin_abort();
9
}
10
};
11
12
int main()
13
{
14
S( {} );
15
}