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
/
initlist36.C
blob
2a2b208165ba3ec24e0ef5efff11b354eb9c0695
1
// PR c++/44358
2
// { dg-do compile { target c++11 } }
3
4
#include <initializer_list>
5
6
struct A
7
{
8
A(int);
9
};
10
11
struct B
12
{
13
B(std::initializer_list<A>);
14
};
15
16
void f (B b);
17
int main()
18
{
19
B b0 = {{1}};
20
B b1 = {{1.0}}; // { dg-error "narrowing" }
21
B b2 {1.0}; // { dg-error "narrowing" }
22
A a {1.0}; // { dg-error "narrowing" }
23
}