Merge remote branch 'origin/master'

This commit is contained in:
Alex Tkachman
2012-07-30 13:25:19 +03:00
3 changed files with 17 additions and 1 deletions
@@ -0,0 +1,9 @@
//KT-2382
trait T {
final fun foo() = "OK"
}
class S : T { }
fun box(): String = S().foo()