"Go to Type Declaration" is broken for stdlib types (KT-13001)
#KT-13001Fixed
This commit is contained in:
@@ -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> {
|
||||
Reference in New Issue
Block a user