Robert Jaros
10/22/2019, 8:39 AM@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Table {
String value() default "";
}
I have declared this in the common
module:
expect annotation class Table(val value: String = "")
But when I try to define typealias
in the jvm
module:
actual typealias Table = Table
it does not compile (Parameter 'value' has conflicting values in the expected and actual annotation
).
Can it be fixed somehow?