blob: 5c59f403d74251b69cdeb0cd7f078cfaeec96f1a [file] [log] [blame]
// 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" }
}