aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist57.C
blob: 5c59f403d74251b69cdeb0cd7f078cfaeec96f1a (plain)
1
2
3
4
5
6
7
8
// PR c++/50054
// { dg-do compile { target c++11 } }

void g( const int& (a)[1] ) {}	// { dg-error "array of references" }

int main () {
    g( { 1, 2 } );		// { dg-error "initializer list" }
}