commented test for KT-857

This commit is contained in:
Alex Tkachman
2011-12-21 10:05:26 +02:00
parent ad795d958f
commit 4fb7d95247
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace container_test
class Container<T>(var t : T) {
fun getT() : T = t
}
fun box() = Container<String>("OK").getT()