[PL][tests] Keep PL test data under "testData/klib/" dir
This commit is contained in:
committed by
Space Team
parent
9e3afe7a1f
commit
5c3e63e19a
+26
@@ -0,0 +1,26 @@
|
||||
package lib1
|
||||
|
||||
abstract class AbstractClassWithFunctions {
|
||||
abstract fun foo(): Int
|
||||
abstract fun bar(): Int
|
||||
abstract fun baz(): Int
|
||||
}
|
||||
|
||||
interface InterfaceWithFunctions {
|
||||
fun foo(): Int
|
||||
fun bar(): Int
|
||||
}
|
||||
|
||||
abstract class AbstractClassWithProperties {
|
||||
abstract val foo1: Int
|
||||
abstract val foo2: Int
|
||||
abstract val bar1: Int
|
||||
abstract val bar2: Int
|
||||
abstract val baz1: Int
|
||||
abstract val baz2: Int
|
||||
}
|
||||
|
||||
interface InterfaceWithProperties {
|
||||
val foo: Int
|
||||
val bar: Int
|
||||
}
|
||||
Reference in New Issue
Block a user