Files
kotlin-fork/idea/testData/libraries/usercode/ExtensionProperty.kt
T
Evgeny Gerashchenko 5bdd68e502 Added navigation to source of constructor.
#KT-3168 fixed
2012-12-20 18:48:48 +04:00

22 lines
369 B
Kotlin

import testData.libraries.*
fun foo() {
println("".exProp)
val p = Pair(1, 2)
println(p.exProp)
}
// main.kt
//public val String.<1>exProp : String
//get() {
// return this
//}
//
//public val Int.exProp : Int
//get() {
// return this
//}
//
//public class <2>Pair<A, B>(val first: A, val second: B)
//
//public val <T> Pair<T, T>.<3>exProp : String