JVM IR: support noarg compiler plugin
#KT-41265 Fixed
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
annotation class NoArg
|
||||
|
||||
class Outer {
|
||||
@NoArg
|
||||
class Nested(val a: String)
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
Outer.Nested::class.java.newInstance()
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user