mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
split declaration: PIEAE (IDEA-190299)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
// "Split into declaration and assignment" "true"
|
||||
|
||||
class Foo {
|
||||
void some() {
|
||||
Foo<T> f;
|
||||
f = new Foo<T>(){
|
||||
<T,V> void foo(T t, V v) {}
|
||||
};
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Split into declaration and assignment" "true"
|
||||
|
||||
class Foo {
|
||||
void some() {
|
||||
Foo<T> <caret>f = new Foo<T>(){
|
||||
<T,V> void foo(T t, V v) {}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user