blob: fa98cec65d374fad66e9d2e848c82349e26ea41d [file] [log] [blame]
//class
class Foo {
Foo(int a, int b) {
}
void foo() {
Foo f = new Foo(1, 2);
}
}