mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
285 B
D
19 lines
285 B
D
// PERMUTE_ARGS:
|
|
// EXTRA_FILES: imports/defaa.d imports/defab.d imports/defac.d imports/defad.d
|
|
module defa;
|
|
|
|
private import imports.defaa;
|
|
|
|
public abstract class A
|
|
{
|
|
Display d;
|
|
int style;
|
|
|
|
this() {}
|
|
|
|
public this(A parent, int style)
|
|
{
|
|
this.style = style;
|
|
d = parent.d;
|
|
}
|
|
}
|