mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
7 lines
158 B
Plaintext
7 lines
158 B
Plaintext
package test
|
|
|
|
public trait JavaBeanAbstractGetter : java.lang.Object {
|
|
public abstract fun getBlue(): jet.Int
|
|
public abstract fun getRed(): jet.Int
|
|
}
|