Don't ruin highlighting if there's no descriptor in resolve session

#EA-61683 Fixed
This commit is contained in:
Nikolay Krasko
2014-10-14 15:11:29 +04:00
parent b1e452b568
commit c5852152b2
3 changed files with 20 additions and 2 deletions
@@ -0,0 +1,10 @@
trait Hi {
fun foo(): Int
}
// Closing brace is intentionally missed
val id = array("kotlin.FlexibleType"
private class Some(): Hi {
override fun foo() = 1
}