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

#include <initializer_list>

// { dg-error "pointer to reference" "" { target *-*-* } 0 }
int foo(std::initializer_list<int&&>);

int i = foo({ 0 });		// { dg-error "std::initializer_list" }