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
Doc: Add doc for standard name mask_len_strided_load{store}m
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist38.C
blob
816f94cf22ab4964ec020b595cf46d0b2473b54b
1
// DR 990
2
// { dg-do compile { target c++11 } }
3
4
#include <initializer_list>
5
6
struct A {
7
A(std::initializer_list<int>); // #1
8
};
9
struct B {
10
A a;
11
};
12
13
void f (B);
14
int main()
15
{
16
B{};
17
f({});
18
B b0 = { };
19
B b1 { }; // OK, uses #1
20
B b2 { 1 }; // { dg-error "could not convert" }
21
}