Files
T

8 lines
117 B
Plaintext
Vendored

package lib1
abstract class A {
fun foo(): Int = 42
open fun bar(): Int = 42
open fun baz(): Int = 42
}