928416c9c5
With new syntax each plugin should be registered in separate argument with syntax `-Xcompiler-plugin=classpath1,classpath2[=argument1=value1,argument2=value2]`
13 lines
185 B
Kotlin
Vendored
13 lines
185 B
Kotlin
Vendored
package foo
|
|
|
|
annotation class NoArg
|
|
annotation class AllOpen
|
|
|
|
@AllOpen
|
|
class Base(val s: String)
|
|
|
|
class Derived(s: String) : Base(s) {
|
|
@NoArg
|
|
inner class Inner(val s: String)
|
|
}
|