mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
14 lines
107 B
D
14 lines
107 B
D
struct S
|
|
{
|
|
int func()
|
|
{
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S s;
|
|
int i = s.func();
|
|
}
|