dmd/compiler/test/runnable/extra-files/lib15729.d
2022-07-09 18:53:07 +02:00

16 lines
117 B
D

struct S
{
uint val;
}
void test1()
{
S s;
s.val = 4321;
}
void test2()
{
S s;
s.val = 1234;
}