mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-27 13:49:53 +03:00
16 lines
174 B
D
16 lines
174 B
D
import tc_access_modifiers.bar;
|
|
|
|
struct X
|
|
{
|
|
public int mypublic;
|
|
private int myprivate;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
Helper helper;
|
|
helper.mfield;
|
|
helper.mfunc;
|
|
X foo;
|
|
foo.myp;
|
|
}
|