Minor. Moved Pair class lower.

This commit is contained in:
Evgeny Gerashchenko
2012-12-18 17:10:05 +04:00
parent 9906bbef4e
commit 32699133cd
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -1,7 +1,5 @@
package testData.libraries
public class Pair<A, B>(val first: A, val second: B)
public trait SimpleTrait {
}
@@ -81,6 +79,8 @@ get() {
return this
}
public class Pair<A, B>(val first: A, val second: B)
public val <T> Pair<T, T>.exProp : String
get() {
return "${this.first} : ${this.second}"
@@ -17,4 +17,6 @@ fun foo() {
// return this
//}
//
//public class Pair<A, B>(val first: A, val second: B)
//
//public val <T> Pair<T, T>.<2>exProp : String