Removed redundant and confusing .after files in negative tests

This commit is contained in:
Valentin Kipyatkov
2016-09-21 22:00:05 +03:00
parent 038068aa44
commit be8b31e82b
12 changed files with 3 additions and 110 deletions
@@ -25,23 +25,3 @@ public class Some
fun Some.invoke(s: String) {}
//-----------------------
// FILE: first.after.kt
// "Import" "true"
// ERROR: Expression 'Some()' of type 'Some' cannot be invoked as a function. The function 'invoke()' is not found
// ACTION: Create extension function 'invoke'
// ACTION: Create member function 'invoke'
package testing
import some.Some
import some.invoke
fun testing() {
<caret>Some()("str")
}
//-----------------------