J2K Converter: Add copy/paste tests for references in extends/implements clauses
This commit is contained in:
@@ -0,0 +1 @@
|
||||
class B : X<String, X<Int, Any>>
|
||||
@@ -0,0 +1,7 @@
|
||||
class X<T, U> {
|
||||
|
||||
}
|
||||
|
||||
class A extends <selection>X<String, X<Integer, Object>></selection> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
class B : <caret>
|
||||
@@ -0,0 +1 @@
|
||||
class B : X<String, X<Int, Any>>
|
||||
@@ -0,0 +1,7 @@
|
||||
interface X<T, U> {
|
||||
|
||||
}
|
||||
|
||||
class A implements <selection>X<String, X<Integer, Object>></selection> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
class B : <caret>
|
||||
@@ -0,0 +1 @@
|
||||
class B : X<Any>
|
||||
@@ -0,0 +1,7 @@
|
||||
interface X<T> {
|
||||
|
||||
}
|
||||
|
||||
class A implements <selection>X</selection> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
class B : <caret>
|
||||
Reference in New Issue
Block a user