mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
296 B
Java
13 lines
296 B
Java
class C {
|
|
<K> void method() {
|
|
class Local {
|
|
void foo(K k) {
|
|
<selection>System.out.println(k);</selection>
|
|
}
|
|
void bar() {
|
|
Object o = new Object();
|
|
System.out.println(o);
|
|
}
|
|
}
|
|
}
|
|
} |