9 lines
106 B
Java
Vendored
9 lines
106 B
Java
Vendored
//class
|
|
class Foo {
|
|
Foo(int a, int b) {
|
|
}
|
|
|
|
void foo() {
|
|
Foo f = new Foo(1, 2);
|
|
}
|
|
} |