2cac922cd0
Tests are excluded in COMPILED_JAVA mode because in this mode external annotations are not present at all ^KT-62310
14 lines
294 B
Kotlin
Vendored
14 lines
294 B
Kotlin
Vendored
// FILE: main.kt
|
|
fun some() {
|
|
JavaClass().f<caret>oo();
|
|
}
|
|
// FILE: JavaClass.java
|
|
public class JavaClass {
|
|
public String foo() {};
|
|
}
|
|
// FILE: annotations.xml
|
|
<root>
|
|
<item name='JavaClass java.lang.String foo()'>
|
|
<annotation name='org.jetbrains.annotations.NotNull'/>
|
|
</item>
|
|
</root> |