Tests for import class action added
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
import java.util.Collections
|
||||
|
||||
namespace b {
|
||||
|
||||
import java.util.List
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
val l : <caret>List<Int>?
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val e : <caret>Exception
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val i : <caret>Int
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
import java.util.Collections
|
||||
import java.util.List
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val l : <caret>List<Int>?
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
import java.util.Collections
|
||||
|
||||
namespace b {
|
||||
|
||||
import java.util.List
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val l : <caret>List<Int>?
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
import java.util.Collections
|
||||
|
||||
namespace b {
|
||||
|
||||
import java.util.List
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
val l = <caret>Collections.emptyList<Int>()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val e = <caret>Exception("")
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val i = <caret>10
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
import java.util.Collections
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val l = <caret>Collections.emptyList<Int>()
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
// "Remove initializer from property" "true"
|
||||
namespace a
|
||||
|
||||
import java.util.Collections
|
||||
|
||||
namespace b {
|
||||
|
||||
class M {
|
||||
trait A {
|
||||
abstract val l = <caret>Collections.emptyList<Int>()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user