split declaration: PIEAE (IDEA-190299)

This commit is contained in:
Anna.Kozlova
2018-04-16 16:45:23 +02:00
parent 838b1b46ff
commit 48dcb9fe54
3 changed files with 25 additions and 2 deletions
@@ -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) {}
};
}
}
@@ -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) {}
};
}
}