Some tests for override action has been added.

This commit is contained in:
Sergey Lukjanov
2012-04-04 11:53:48 +04:00
parent 70169409dc
commit 23e368cba4
22 changed files with 268 additions and 25 deletions
@@ -0,0 +1,7 @@
open class A() {
open val method : () -> Unit? = {println("hello")}
}
fun some() : A {
return object : A() {<caret>}
}