Replace "jet" package name with "kotlin" in testData
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// "Add '<*>'" "true"
|
||||
public fun foo(a: Any) {
|
||||
when (a) {
|
||||
is jet.List<*> -> {}
|
||||
is kotlin.List<*> -> {}
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
// "Add '<*, *>'" "true"
|
||||
public fun foo(a: Any) {
|
||||
when (a) {
|
||||
is jet.Map<*, *> -> {}
|
||||
is kotlin.Map<*, *> -> {}
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
// "Add '<*>'" "true"
|
||||
public fun foo(a: Any) {
|
||||
when (a) {
|
||||
is jet.List<caret> -> {}
|
||||
is kotlin.List<caret> -> {}
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
// "Add '<*, *>'" "true"
|
||||
public fun foo(a: Any) {
|
||||
when (a) {
|
||||
is jet.Map<caret> -> {}
|
||||
is kotlin.Map<caret> -> {}
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user