Add internal errors to test data in multi module tests
Tests started to fail after 82a21b3955.
This commit is contained in:
@@ -2,13 +2,13 @@ package m2
|
||||
|
||||
public fun testUseAsReceiver(api: javaInterface.API) {
|
||||
api.useM1A<String> {
|
||||
<error>this</error>.length
|
||||
<error descr="[NO_THIS] 'this' is not defined in this context">this</error>.<error descr="[DEBUG] Resolved to error element">length</error>
|
||||
}
|
||||
api.useM1B<String> {
|
||||
this.length
|
||||
}
|
||||
api.useM2A<String> {
|
||||
<error>this</error>.length
|
||||
<error descr="[NO_THIS] 'this' is not defined in this context">this</error>.<error descr="[DEBUG] Resolved to error element">length</error>
|
||||
}
|
||||
api.useM2B<String> {
|
||||
this.length
|
||||
@@ -20,12 +20,12 @@ public fun testUseAsParameter(api: javaInterface.API) {
|
||||
it.length
|
||||
}
|
||||
api.useM1B<String> {
|
||||
<error>it</error>.length
|
||||
<error descr="[UNRESOLVED_REFERENCE] Unresolved reference: it">it</error>.<error descr="[DEBUG] Resolved to error element">length</error>
|
||||
}
|
||||
api.useM2A<String> {
|
||||
it.length
|
||||
}
|
||||
api.useM2B<String> {
|
||||
<error>it</error>.length
|
||||
<error descr="[UNRESOLVED_REFERENCE] Unresolved reference: it">it</error>.<error descr="[DEBUG] Resolved to error element">length</error>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user