mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 31eaa3831e875e3a6045bf6c4ae838264c48543d
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());
|
|
}
|
|
|
|
} |