Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
test8182.d
blob: 15364409d60a474bc0dc0c115a3ea3266f5a2d1a [
file
] [
log
] [
blame
]
struct
S
{
~
this
()
{
assert
(
false
);
}
}
void
lazily
(
lazy S
)
{
}
void
main
()
{
lazily
(
S
());
}