mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
102 B
D
12 lines
102 B
D
// REQUIRED_ARGS: -de
|
|
|
|
struct S
|
|
{
|
|
package int field;
|
|
}
|
|
|
|
void test()
|
|
{
|
|
S s;
|
|
s.field = 1;
|
|
}
|