Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
operator3.C
blob: 08f5c83f229d9aaaa5439df98be2a18f8a7d6435 [
file
] [
log
] [
blame
]
// PR c++/9454
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
// { dg-do compile }
template
<int>
struct
A
{
struct
B
{
operator
int
();
};
struct
C
:
B
{
operator
int
();
};
};
A
<
0
>
a
;