Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
typedef1.C
blob: 4d6a1e438e693b1bbe4e2776f55c6627ea31c32c [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Testcase for handling of typedef wierdness.
template
<
class
T
>
struct
A
{
typedef
enum
{
foo
}
B
;
A
(
B b
);
};
template
<
class
T
>
A
<
T
>::
A
(
B b
)
{
}