Find Java usage of @JvmField declared in primary constructor (KT-18322)
#KT-18322 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
8b566fda76
commit
bee7736baf
@@ -0,0 +1,4 @@
|
||||
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtParameter
|
||||
// OPTIONS: usages
|
||||
class Test(@JvmField val <caret>foo: String) {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class JavaClass {
|
||||
void test() {
|
||||
System.out.println(new Test("").foo);
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
Unclassified usage 3 System.out.println(new Test("").foo);
|
||||
Reference in New Issue
Block a user