Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.dg
/
expr
/
ptrmem3.C
blob: 9a729c9de5b75522ea64bb4b779f38d95cbf9601 [
file
] [
log
] [
blame
]
struct
S
{};
struct
T
:
public
S
{};
void
f
()
{
int
S
::*
s
;
int
T
::*
t
;
(
t
?
t
:
s
)
==
t
;
}