Move test data for NavigateTo*Library tests to a more specific folder

This commit is contained in:
Pavel V. Talanov
2014-02-21 16:31:09 +04:00
parent bbcc2a33ed
commit b6b423935f
28 changed files with 1 additions and 1 deletions
@@ -0,0 +1,22 @@
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