[IR] update testdata: print arguments for annotations
This commit is contained in:
committed by
teamcityserver
parent
2a19dc32f2
commit
84d6e43590
@@ -24,7 +24,7 @@ annotation class State : Annotation {
|
||||
|
||||
}
|
||||
|
||||
@State(...)
|
||||
@State(name = "1", storages = [Storage(value = "HELLO")])
|
||||
class Test {
|
||||
constructor() /* primary */ {
|
||||
TODO("IrDelegatingConstructorCall")
|
||||
|
||||
@@ -2,12 +2,12 @@ fun create(): String {
|
||||
return "OK"
|
||||
}
|
||||
|
||||
@Deprecated(...)
|
||||
@Deprecated(message = "Use create() instead()", replaceWith = ReplaceWith(expression = "create()", imports = []))
|
||||
fun create(s: String): String {
|
||||
return create()
|
||||
}
|
||||
|
||||
@Deprecated(...)
|
||||
@Deprecated(message = "Use create() instead()")
|
||||
fun create(b: Boolean): String {
|
||||
return create()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user