package lib1 abstract class AbstractClass { abstract fun foo(): Int abstract val bar: Int } interface Interface { fun foo(): Int val bar: Int }