Files
kotlin-fork/compiler/testData/cli/jvm/plugins/multiplePluginsInSameArg.kt
T
Dmitriy Novozhilov 928416c9c5 [CLI] Introduce new compiler arguments for registering compiler plugins
With new syntax each plugin should be registered in separate argument with syntax
`-Xcompiler-plugin=classpath1,classpath2[=argument1=value1,argument2=value2]`
2022-07-20 09:07:26 +00:00

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)