partial support for 'abstract' modifier added
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
abstract open class Default {
|
||||
fun defaultValue(): Int
|
||||
abstract fun defaultValue(): Int
|
||||
}
|
||||
|
||||
class MyInt() {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
class Base() {
|
||||
public var v : Int
|
||||
public var v : Int = 0
|
||||
}
|
||||
|
||||
class Left() : Base() {}
|
||||
|
||||
@@ -2,7 +2,7 @@ class C() {
|
||||
public var f: Int
|
||||
|
||||
{
|
||||
f = 610
|
||||
$f = 610
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ class Base() {
|
||||
public val read : Int
|
||||
get() = 239
|
||||
|
||||
public var readwrite : Int
|
||||
public var readwrite : Int = 0
|
||||
get() = $readwrite + 1
|
||||
set(n : Int) {
|
||||
$readwrite = n
|
||||
|
||||
Reference in New Issue
Block a user