mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
12 lines
160 B
D
12 lines
160 B
D
module tangotests.mem2;
|
|
|
|
void main()
|
|
{
|
|
int* ip = new int;
|
|
assert(*ip == 0);
|
|
*ip = 4;
|
|
assert(*ip == 4);
|
|
delete ip;
|
|
assert(ip is null);
|
|
}
|