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

#include <initializer_list>

void test3()
{
  std::initializer_list<int> list{move}; // { dg-error "not declared|could not convert" }
}