mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
25 lines
253 B
D
25 lines
253 B
D
module tangotests.mem5;
|
|
|
|
class SC
|
|
{
|
|
int* ip;
|
|
this()
|
|
{
|
|
ip = new int;
|
|
}
|
|
~this()
|
|
{
|
|
delete ip;
|
|
}
|
|
void check()
|
|
{
|
|
assert(ip !is null);
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
scope sc = new SC;
|
|
sc.check();
|
|
}
|