regression test for KT-3421

This commit is contained in:
Dmitry Jemerov
2015-03-04 17:43:38 +01:00
parent 46e0fdc067
commit e60aafb18a
2 changed files with 15 additions and 0 deletions
@@ -0,0 +1,9 @@
public object Globals{
public fun get(key: String, remove: Boolean = true): String {
return "OK"
}
}
fun box(): String {
return Globals["test"]
}