mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-26 21:29:58 +03:00
19 lines
No EOL
164 B
D
19 lines
No EOL
164 B
D
struct Foo {
|
|
this(int mCtor) {}
|
|
int member1;
|
|
}
|
|
|
|
class Bar {
|
|
this(int mCtor) {}
|
|
int member1;
|
|
}
|
|
|
|
unittest {
|
|
Foo f;
|
|
f.m
|
|
}
|
|
|
|
unittest {
|
|
Bar b = new Bar(1);
|
|
b.m
|
|
} |