aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/error30.C
blob: aabdcc701c53fd1f9aee531502f34763c3176c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/30854
// { dg-do compile }
// { dg-options "-fshow-column -ansi -pedantic-errors -Wno-long-long" }

struct A
{
  A();
  A(int);
};

A a = -A();	// { dg-error "operand type is 'A'" }
A b = -A(5);	// { dg-error "operand type is 'A'" }