Update test data after introducing IntrinsicConstEvaluation annotation

This commit is contained in:
Ivan Kylchik
2021-11-16 14:25:04 +03:00
parent d0ab01ad24
commit 51ccc32a3f
398 changed files with 2696 additions and 2464 deletions
@@ -2,10 +2,10 @@
// ALLOW_KOTLIN_PACKAGE
// FILE: uint.kt
@file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")
package kotlin
inline class UInt(val value: Int)
inline class UInt @kotlin.internal.IntrinsicConstEvaluation constructor(val value: Int)
// FILE: test.kt