Sign in
gnu
/
gcc
/
19220ca6aa79921cc431e41f25986e16410c7a6a
/
.
/
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
;
}