11 lines
72 B
Kotlin
11 lines
72 B
Kotlin
// "Create trait 'A'" "true"
|
|
package p
|
|
|
|
class Foo: A {
|
|
|
|
}
|
|
|
|
trait A {
|
|
|
|
}
|