Move Left/Right: Support type constraints
#KT-26525 Fixed
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
// MOVE: right
|
||||
interface Foo<E>
|
||||
interface Bar<K, V>
|
||||
interface Baz<E, K, N> where B : <caret>Bar<E, K>, E: Any, F: Foo<E>
|
||||
@@ -0,0 +1,4 @@
|
||||
// MOVE: right
|
||||
interface Foo<E>
|
||||
interface Bar<K, V>
|
||||
interface Baz<E, K, N> where E: Any, B : <caret>Bar<E, K>, F: Foo<E>
|
||||
@@ -0,0 +1,4 @@
|
||||
// MOVE: left
|
||||
interface Foo<E>
|
||||
interface Bar<K, V>
|
||||
interface Baz<E, K, N> where B : Bar<E, K>, <caret>E: Any, F: Foo<E>
|
||||
@@ -0,0 +1,4 @@
|
||||
// MOVE: left
|
||||
interface Foo<E>
|
||||
interface Bar<K, V>
|
||||
interface Baz<E, K, N> where <caret>E: Any, B : Bar<E, K>, F: Foo<E>
|
||||
Reference in New Issue
Block a user