Files
kotlin-fork/analysis/analysis-api/testData/symbols/symbolByReference/javaMethodWithExternalNotNullAnnotation.kt
T
Dmitrii Gridin 2cac922cd0 [FIR] add tests on external annotations
Tests are excluded in COMPILED_JAVA mode because in this
mode external annotations are not present at all

^KT-62310
2023-10-13 12:16:12 +00:00

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>