Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
error30.C
blob: aabdcc701c53fd1f9aee531502f34763c3176c3f [
file
] [
log
] [
blame
]
// 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'" }