Minor: explicitly opt-in for diagnostics messages in MultiplatformAnalysisTests

This commit is contained in:
Dmitry Savvinov
2020-08-22 14:44:17 +03:00
parent 9cde42e2bc
commit 68d931969d
31 changed files with 56 additions and 46 deletions
@@ -5,7 +5,7 @@ interface B : A
fun testA(x: A) {
x.foo()
x.bar()
x.<!UNRESOLVED_REFERENCE("baz")!>baz<!>()
x.<!UNRESOLVED_REFERENCE!>baz<!>()
take_A_common_1(x)
take_A_common_2_1(x)
@@ -15,7 +15,7 @@ fun testA(x: A) {
fun testB(x: B) {
x.foo()
x.bar()
x.<!UNRESOLVED_REFERENCE("baz")!>baz<!>()
x.<!UNRESOLVED_REFERENCE!>baz<!>()
take_A_common_1(x)
take_A_common_2_1(x)