DCD/tests/tc025/file.d

12 lines
97 B
D

struct SomeStruct
{
void a(int) {}
int a() { return 10; }
}
unittest
{
SomeStruct s;
s.a.
}