Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
overload6.C
blob: fda22838bff4edbd589335ae7aeb59658e57729a [
file
] [
log
] [
blame
]
// { dg-do run }
extern
"C"
void
abort
();
struct
S1
{
int
f
()
{
return
0
;
}
int
f
()
const
{
return
1
;
}
};
struct
S2
:
public
S1
{
};
int
main
()
{
S2 s2
;
if
(
s2
.
f
()
!=
0
)
abort
();
}