Created module idea-test-framework and moved classes needed for idea tests there
Moved tests for completion and their test data into module idea-completion
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
trait Trait<T>
|
||||
|
||||
fun<T> Trait<T>.extension(t: T): T = t
|
||||
|
||||
class Outer : Trait<String> {
|
||||
inner class Inner : Trait<Int> {
|
||||
fun foo() {
|
||||
ext<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// EXIST: { itemText: "extension", tailText: "(t: String) for Trait<T> in <root>", typeText: "String" }
|
||||
// EXIST: { itemText: "extension", tailText: "(t: Int) for Trait<T> in <root>", typeText: "Int" }
|
||||
Reference in New Issue
Block a user