Pull Up: Move Kotlin -> Kotlin tests to separate directory
This commit is contained in:
committed by
Alexey Sedunov
parent
a695202846
commit
ffc56a7c31
@@ -0,0 +1,20 @@
|
||||
open class A
|
||||
|
||||
class <caret>B: A {
|
||||
// INFO: {"checked": "true"}
|
||||
val n: Int
|
||||
|
||||
// INFO: {"checked": "true"}
|
||||
val x: Int = 3
|
||||
// INFO: {"checked": "true"}
|
||||
val y: Int = 4
|
||||
|
||||
// INFO: {"checked": "true"}
|
||||
val a: Int = 1
|
||||
// INFO: {"checked": "true"}
|
||||
val b: Int = x + y
|
||||
|
||||
constructor(p: Int) {
|
||||
n = a + b - p
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user