[IR] dumpKotlinLike: add testdata for FIR tests
This commit is contained in:
committed by
teamcityserver
parent
d7bd4240e1
commit
c68040753d
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
annotation class TestAnn : Annotation {
|
||||
constructor(x: Int) /* primary */
|
||||
val x: Int
|
||||
field = x
|
||||
get
|
||||
|
||||
}
|
||||
|
||||
class TestClass {
|
||||
@TestAnn(x = 1)
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = 2)
|
||||
constructor(x: Int) {
|
||||
this/*TestClass*/()
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user