Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
using5.C
blob: 672530199c5e21442866be333dcb424e8e2ff215 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Based on bug report by Klaus-Georg Adams
// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
struct
bar
{
typedef
bar t
;
};
struct
foo
:
bar
{
using
bar
::
t
;
t field
;
t meth
();
void
baz
(
t arg
);
};