Merge remote branch 'origin/master'

This commit is contained in:
Andrey Breslav
2011-05-13 20:54:57 +04:00
9 changed files with 86 additions and 28 deletions
@@ -0,0 +1,8 @@
class Wrapper<T>() {
fun isSameWrapper(wrapper: Any) = wrapper is Wrapper<T>
}
fun foo() {
val wrapper = new Wrapper<Int>()
return wrapper.isSameWrapper(new Wrapper<String>())
}