Files
ldc/tests/mini/structs.d

14 lines
107 B
D

struct S
{
int func()
{
return 42;
}
}
void main()
{
S s;
int i = s.func();
}