aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/deleted1.C
blob: 0a632bfb30b707d21c88981e2703f62dc0e949bf (plain)
1
2
3
4
5
6
// PR c++/58581
// { dg-do compile { target c++11 } }

template<typename T> int foo(T) noexcept(T()) = delete;

int i = foo(0);       // { dg-error "deleted" }