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
@@ -16,6 +16,6 @@ val a11 = <!DIVISION_BY_ZERO!>1 / 0.0<!>
val a12 = <!DIVISION_BY_ZERO!>1L / 0<!>
val b1: Byte = <!TYPE_MISMATCH!>1 / 0<!>
@Ann(<!ANNOTATION_ARGUMENT_MUST_BE_CONST, DIVISION_BY_ZERO!>1 / 0<!>) val b2 = 1
@Ann(<!DIVISION_BY_ZERO!>1 / 0<!>) val b2 = 1
annotation class Ann(val i : Int)