"Go to Type Declaration" is broken for stdlib types (KT-13001)

#KT-13001Fixed
This commit is contained in:
Nikolay Krasko
2016-12-19 22:00:38 +03:00
parent 6ca5ba3615
commit 2500dc9bb1
4 changed files with 48 additions and 10 deletions
@@ -0,0 +1,8 @@
// FILE: before.kt
fun foo(a: Any) {
val b = 1
foo(<caret>b)
}
// FILE: after.kt
public class <caret>Int private constructor() : Number(), Comparable<Int> {