blob: 2c5c94007462e3e345549c85b860d669eb6876da [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail7443.d(11): Error: `static` has no effect on a constructor inside a `static` block. Use `static this()`
fail_compilation/fail7443.d(12): Error: `shared static` has no effect on a constructor inside a `shared static` block. Use `shared static this()`
---
*/
class Foo
{
public static { this() {}}
public shared static { this() {}}
public {this(int) {}}
}