[IR] update testdata: support annotations on parameters

This commit is contained in:
Zalim Bashorov
2020-11-11 14:18:51 +03:00
committed by teamcityserver
parent 182cb52bdb
commit a34a311e86
6 changed files with 19 additions and 19 deletions
@@ -28,22 +28,22 @@ const val UINT_CONST: UInt
field = 42
get
fun takeUByte(u: UByte) {
fun takeUByte(@ImplicitIntegerCoercion u: UByte) {
}
fun takeUShort(u: UShort) {
fun takeUShort(@ImplicitIntegerCoercion u: UShort) {
}
fun takeUInt(u: UInt) {
fun takeUInt(@ImplicitIntegerCoercion u: UInt) {
}
fun takeULong(u: ULong) {
fun takeULong(@ImplicitIntegerCoercion u: ULong) {
}
fun takeUBytes(vararg u: UByte) {
fun takeUBytes(@ImplicitIntegerCoercion vararg u: UByte) {
}
fun takeLong(l: Long) {
fun takeLong(@ImplicitIntegerCoercion l: Long) {
}
fun test() {