Updated some test data so it won't be affected by automatic renamers.

This commit is contained in:
Evgeny Gerashchenko
2015-04-15 20:13:51 +03:00
parent 260b8ae431
commit 4f412f77d1
6 changed files with 9 additions and 13 deletions
@@ -1,11 +1,11 @@
package kotlin.testing
import testing.NewInterfaceName
import testing.NewInterface
class Some(s: NewInterfaceName) : NewInterfaceName() {
class New(s: NewInterface) : NewInterface() {
val test = s
fun testFun(param : NewInterfaceName) : NewInterfaceName {
fun testFun(param : NewInterface) : NewInterface {
return test;
}
}