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

void f(int i);

int main()
{
  f({42.0});			// { dg-error "narrowing" }
  return {1.0};			// { dg-error "narrowing" }
}