[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]`
This commit is contained in:
committed by
teamcity
parent
8919703448
commit
928416c9c5
@@ -0,0 +1,12 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user