Claude Brisson
10/19/2022, 3:03 PMinterface SomeInterface {
@get:Throws(SomeException::class)
val something: Something
}
On jvm it compiles well, but the native compiler gives me the error:
This annotation is not applicable to target 'member property without backing field or delegate' and use site target '@get'
How to overcome this limitation? Is there a corresponding YouTrack issue?
Thanks.Arkadii Ivanov
10/19/2022, 5:17 PMClaude Brisson
10/19/2022, 5:23 PM