Files
ldc/test/structs.d
2007-09-01 21:43:27 +02:00

14 lines
107 B
D

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