blob: 6008c8a1e21587479a0ba55d64231183577edbba [file] [log] [blame]
module b18219;
class Foobar
{
int a;
this(int a)
{
this.a = a;
}
static int smeth()
{
return 1;
}
}
void fun() {}