Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
();
}