Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
ebnull-oldcast.C
blob: be3a5644ff3948ac4fa1452bcb49084ccc3e8dc5 [
file
] [
log
] [
blame
]
// { dg-do run }
class
null
{
null
(
null
const
&);
void
operator
&
();
public
:
null
()
{}
template
<
typename
T
>
operator
T
*
()
const
{
return
0
;
}
}
const
null
;
int
main
()
{
int
*
p
=
(
int
*)
null
;
return
0
;
}