Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
ctor2.C
blob: e396dc064f7adee0e38366e729b6807f3b2b40d9 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: the reference to c in the initializer list doesn't get fixed up.
struct
AP
{
AP
(
unsigned
char
);
};
struct
AI
:
AP
{
AI
(
unsigned
char
);
};
AI
::
AI
(
unsigned
char
c
)
:
AP
(
c
)
{
&
c
;
}