mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Test cases are chosen so that addition/removal of explicit type will not interfere with the original purpose of the test
18 lines
341 B
Kotlin
18 lines
341 B
Kotlin
package test
|
|
|
|
open class ClassVarModality() {
|
|
open var property1: Int = 1
|
|
|
|
final internal var property2: Int = 1
|
|
|
|
open var property3: Int = 1
|
|
private set
|
|
|
|
final internal var property4: Int = 1
|
|
private set
|
|
}
|
|
|
|
abstract class ClassVarModalityAbstract {
|
|
abstract var property1 : java.util.Date
|
|
public set
|
|
} |