[PL][tests] Keep PL test data under "testData/klib/" dir
This commit is contained in:
committed by
Space Team
parent
9e3afe7a1f
commit
5c3e63e19a
@@ -0,0 +1,15 @@
|
||||
class Class {
|
||||
fun f() = "FAIL: Class.f"
|
||||
val p get() = "FAIL: Class.p"
|
||||
override fun toString() = "FAIL: Class.toString"
|
||||
}
|
||||
|
||||
class RemovedClass {
|
||||
fun f() = "FAIL: RemovedClass.f"
|
||||
val p get() = "FAIL: RemovedClass.p"
|
||||
}
|
||||
|
||||
abstract class RemovedAbstractClass
|
||||
interface RemovedInterface
|
||||
|
||||
open class RemovedOpenClass
|
||||
Reference in New Issue
Block a user