dmd/compiler/test/compilable/disable_new.d
2022-07-09 18:53:07 +02:00

11 lines
200 B
D

class C
{
// force user of a type to use an external allocation strategy
@disable new();
}
struct S
{
// force user of a type to use an external allocation strategy
@disable new();
}