aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/desig11.C
blob: a189fff2059632a94671a4c7907e686f00ee8eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/71446
// { dg-do compile { target c++11 } }
// { dg-options "" }

#include <initializer_list>

int foo (int);				// { dg-message "initializing argument 1 of" }
int x = foo ({.foo = 0});		// { dg-error "cannot convert" }

int bar (_Complex int);			// { dg-message "initializing argument 1 of" }
int y = bar ({.real = 0, .imag = 1});	// { dg-error "cannot convert" }

int baz (std::initializer_list<int>);
int z = baz ({.one = 1, .two = 2, .three = 3});	// { dg-error "designated initializers" }