mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
117 B
D
16 lines
117 B
D
struct S
|
|
{
|
|
uint val;
|
|
}
|
|
|
|
void test1()
|
|
{
|
|
S s;
|
|
s.val = 4321;
|
|
}
|
|
|
|
void test2()
|
|
{
|
|
S s;
|
|
s.val = 1234;
|
|
}
|