Update resolveAnnotations tests in new infrastructure

This commit is contained in:
Mikhael Bogdanov
2021-07-15 14:11:40 +02:00
committed by Space
parent 671ef7dfff
commit f080dbb78c
101 changed files with 1242 additions and 40 deletions
@@ -9,10 +9,10 @@ annotation class Ann(
)
@Ann(
p1 = java.lang.Integer.MAX_VALUE + 1,
p1 = <!INTEGER_OVERFLOW!>java.lang.Integer.MAX_VALUE + 1<!>,
p2 = 1 + 1,
p3 = java.lang.Integer.MAX_VALUE + 1,
p4 = 1.toInt() + 1.toInt(),
p3 = <!INTEGER_OVERFLOW, TYPE_MISMATCH!>java.lang.Integer.MAX_VALUE + 1<!>,
p4 = <!TYPE_MISMATCH!>1.toInt() + 1.toInt()<!>,
p5 = 1.toInt() + 1.toInt()
) class MyClass