I would like to use this Java annotation in the mu...
# multiplatform
r
I would like to use this Java annotation in the multiplatform project:
Copy code
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Table {
	String value() default "";
}
I have declared this in the
common
module:
Copy code
expect annotation class Table(val value: String = "")
But when I try to define
typealias
in the
jvm
module:
Copy code
actual typealias Table = Table
it does not compile (
Parameter 'value' has conflicting values in the expected and actual annotation
). Can it be fixed somehow?