aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/deleted3.C
blob: 67836773af3483296c1797fed95146f7d611d650 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/60216
// { dg-require-effective-target c++11 }

struct A
{
  template<typename T> A(T) = delete;
};

template<> A::A<int>(int) {}

A a(0);