Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test20656.d
blob: f68d65470263307b0c781321c3e3ba1e79f20511 [
file
] [
log
] [
blame
]
// https://issues.dlang.org/show_bug.cgi?id=20656
import
core
.
stdc
.
stdlib
:
free
,
malloc
;
@live
void
main
()
{
auto
p
=
malloc
(
1
);
free
(
p
);
free
(
p
);
}