mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
14 lines
127 B
Plaintext
14 lines
127 B
Plaintext
class A {
|
|
void method(B b) {
|
|
}
|
|
}
|
|
|
|
class B {
|
|
}
|
|
|
|
public class Main {
|
|
void user() {
|
|
.method(new B());
|
|
}
|
|
|
|
} |