mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
7 lines
82 B
D
7 lines
82 B
D
class A {
|
|
@disable new();
|
|
}
|
|
|
|
void main() {
|
|
scope A a = new A();
|
|
}
|