Drop createQualifier: testData update

This commit is contained in:
Dmitry Petrov
2015-11-11 18:14:59 +03:00
parent 28d15e776a
commit 9856af48ca
47 changed files with 289 additions and 96 deletions
@@ -1 +1 @@
Value read (6: 12) return Bar
Value read (6: 12) return Bar
@@ -1 +1 @@
Value read (7: 16) return Bar
Value read (7: 16) return Bar
@@ -1,5 +1,6 @@
// "class org.jetbrains.kotlin.idea.quickfix.AutoImportFix" "false"
// ERROR: Unresolved reference: SomeTest
// ERROR: Expression expected, but a package name found
// ACTION: Edit intention settings
// ACTION: Replace safe access expression with 'if' expression
// ACTION: Disable 'Replace Safe Access Expression with 'if' Expression'
@@ -1,5 +1,6 @@
// "class org.jetbrains.kotlin.idea.quickfix.AutoImportFix" "false"
// ERROR: Unresolved reference: SomeTest
// ERROR: Expression expected, but a package name found
// ACTION: Create class 'SomeTest'
// ACTION: Replace safe access expression with 'if' expression
@@ -1,5 +1,5 @@
// "Import" "true"
// ERROR: Please specify constructor invocation; classifier 'ArrayList' does not have a companion object
// ERROR: Function invocation 'ArrayList()' expected
// KT-4000
@@ -1,5 +1,5 @@
// "Import" "true"
// ERROR: Please specify constructor invocation; classifier 'ArrayList' does not have a companion object
// ERROR: Function invocation 'ArrayList()' expected
// KT-4000
@@ -0,0 +1,4 @@
fun foo() {
A
}
+3
View File
@@ -0,0 +1,3 @@
fun foo() {
<selection>java.util.List</selection>
}
@@ -0,0 +1,5 @@
import java.util.List
fun foo() {
List
}