[NoArg] Add implementation of plugin for FIR

This commit is contained in:
Dmitriy Novozhilov
2022-05-20 14:58:13 +03:00
committed by teamcity
parent 8acb8aa043
commit 5d0655247f
19 changed files with 448 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
annotation class NoArg
class Outer {
@NoArg
inner class <!NOARG_ON_INNER_CLASS_ERROR!>Inner<!>(val b: Any)
}
fun local() {
@NoArg
class Local(val l: Any) {
@NoArg
inner class InnerLocal(val x: Any)
}
}
-1
View File
@@ -1,4 +1,3 @@
// FIR_IDENTICAL
annotation class NoArg
class Outer {