Move resolveAnnotations tests into diagnostics tests
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
annotation class Ann(
|
||||
val b1: Boolean,
|
||||
val b2: Boolean
|
||||
)
|
||||
|
||||
@Ann(true && false, true && true) class MyClass
|
||||
|
||||
// EXPECTED: @Ann(b1 = false, b2 = true)
|
||||
Reference in New Issue
Block a user