Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
scoping8.C
blob: fe3b33646014dbd6c3f14fe3a4e328f1edee87cf [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: g++ allows two different meanings of a name in the same scope.
typedef
int
foo
;
// { dg-message "declared here" }
struct
A
{
A
(
foo
);
int
foo
();
// { dg-error "changes meaning" }
};