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