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
@@ -12,6 +12,6 @@ annotation class Ann(
val a = 1
val b = 2
@Ann(1 > 2, 1.0 > 2.0, 2 > a, b > a, 'b' > 'a', "a" > "b") class MyClass
@Ann(1 > 2, 1.0 > 2.0, <!NON_CONST_VAL_USED_IN_CONSTANT_EXPRESSION!>2 > a<!>, <!NON_CONST_VAL_USED_IN_CONSTANT_EXPRESSION!>b > a<!>, 'b' > 'a', "a" > "b") class MyClass
// EXPECTED: @Ann(b1 = false, b2 = false, b3 = true, b4 = true, b5 = true, b6 = false)