mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
10 lines
191 B
Java
10 lines
191 B
Java
// "Split into declaration and assignment" "true-preview"
|
|
|
|
class Foo {
|
|
void some() {
|
|
Foo<T> f;
|
|
f = new Foo<T>(){
|
|
<T,V> void foo(T t, V v) {}
|
|
};
|
|
}
|
|
} |