aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/pure1.C
blob: 2b6f28b7df5111c44495e87b3c79fc4c817291b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/28506

struct A
{
  virtual void* foo() = 1; // { dg-error "pure" }
};

struct B
{
  void operator()()() = 1; // { dg-error "pure|function|initializer" }
};