e6b5cb5216
Update includes:
- Changing syntax of `OI/`NI` tags from `<!NI;TAG!>` to `<!TAG{NI}!>`
- Fix some incorrect directives
- Change order of diagnostics in some places
- Remove ignored diagnostics from FIR test data (previously `DIAGNOSTICS` didn't work)
- Update FIR dumps in some places and add `FIR_IDENTICAL` if needed
- Replace all JAVAC_SKIP with SKIP_JAVAC directive
27 lines
429 B
Kotlin
Vendored
27 lines
429 B
Kotlin
Vendored
// SKIP_JAVAC
|
|
// FILE: A.java
|
|
public class A {
|
|
public B b() {}
|
|
public F f() {}
|
|
}
|
|
|
|
class B { public void bar() {} }
|
|
|
|
// FILE: C.java
|
|
class D {
|
|
public void baz() {}
|
|
}
|
|
|
|
// FILE: E.java
|
|
class F {
|
|
public void foobaz() {}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
fun main(x: A) {
|
|
x.b().<!UNRESOLVED_REFERENCE!>bar<!>()
|
|
x.f().<!UNRESOLVED_REFERENCE!>foobaz<!>()
|
|
|
|
<!UNRESOLVED_REFERENCE!>D<!>().<!UNRESOLVED_REFERENCE!>baz<!>()
|
|
}
|