Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
lto
/
pr48042_0.C
blob: 7754e7ec64fdf764965ce301f01a907c526c2fd9 [
file
] [
log
] [
blame
]
// { dg-lto-do link }
// { dg-extra-ld-options "-r -nostdlib -g -flinker-output=nolto-rel" }
class
A
{
virtual
int
x
()
=
0
;
};
class
B
:
public
A
{
int
x
();
};
int
B
::
x
()
{
return
0
;
}