Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
pmem.C
blob: 90c61226352964746f8f2130a7dd28d39f8729bc [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: g++ parses the declaration of 'char A::* foo' below as a
// declaration of 'char A'.
class
A
{
};
typedef
int
foo
;
void
f
()
{
char
A
::*
foo
;
foo
=
0
;
// { dg-bogus "" } parsing blunder
}