Fix NPE in GotoSuperActionHandler.java (EA-77295)

This commit is contained in:
Nikolay Krasko
2016-01-25 17:32:47 +03:00
parent aebf681809
commit 06939b11e4
3 changed files with 16 additions and 1 deletions
@@ -0,0 +1,8 @@
// FILE: before.kt
fun test() {
val a = { <caret>a: Int -> 1}
}
// FILE: after.kt
fun test() {
val a = { <caret>a: Int -> 1}
}