Modified test data to provoke resolution because of rename in imports.

This commit is contained in:
Evgeny Gerashchenko
2013-01-09 17:58:14 +04:00
parent 43fd993d6d
commit 09f4705360
4 changed files with 9 additions and 2 deletions
@@ -15,6 +15,8 @@ package testData.libraries
[public fun func() : Unit { /* compiled code */ }]
[public fun func(cs : jet.CharSequence) : Unit { /* compiled code */ }]
[public fun func(a : jet.Int, b : jet.Int) : Unit { /* compiled code */ }]
[public fun func(a : jet.Int, b : jet.String = /* compiled code */) : Unit { /* compiled code */ }]
+3 -1
View File
@@ -1,4 +1,6 @@
package testData.libraries
public fun func(str : String) {
import jet as gogland
public fun func(str : gogland.String) {
}
+3
View File
@@ -99,6 +99,9 @@ public fun func(a : Int, b : Int) {
public fun func() {
}
public fun func(cs : CharSequence) {
}
public inline fun <T> T.filter(predicate: (T)-> Boolean) : T? = this
@@ -6,6 +6,6 @@ fun foo() {
}
// extra.kt
//public fun <1>func(str : String) {
//public fun <1>func(str : gogland.String) {
// main.kt
//public fun <2>func(a : Int, b : String = "55") {