KT-3553 Problem with propagation for extension functions

#KT-3553 fixed
This commit is contained in:
Evgeny Gerashchenko
2013-05-07 16:04:17 +04:00
parent dd87c38ea3
commit d56494ebd3
10 changed files with 140 additions and 28 deletions
@@ -0,0 +1,12 @@
package test
public trait Super1 {
public fun String.foo()
public fun Array<String>.bar()
}
public trait Super2 {
public fun foo(p: String)
public fun bar(vararg p: String)
}