[IR] update testdata: support annotations on parameters
This commit is contained in:
committed by
teamcityserver
parent
182cb52bdb
commit
a34a311e86
+2
-2
@@ -6,11 +6,11 @@ annotation class TestAnn : Annotation {
|
||||
|
||||
}
|
||||
|
||||
fun testFun(x: Int) {
|
||||
fun testFun(@TestAnn(x = "testFun.x") x: Int) {
|
||||
}
|
||||
|
||||
class TestClassConstructor1 {
|
||||
constructor(x: Int) /* primary */ {
|
||||
constructor(@TestAnn(x = "TestClassConstructor1.x") x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user