Merge remote-tracking branch 'origin/master'

This commit is contained in:
Andrey Breslav
2011-12-21 11:37:40 +02:00
22 changed files with 295 additions and 89 deletions
@@ -0,0 +1,7 @@
namespace container_test
class Container<T>(var t : T) {
fun getT() : T = t
}
fun box() = Container<String>("OK").getT()