[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* See org/jetbrains/kotlin/fir/java/scopes/JavaClassUseSiteMemberScope.kt:93
|
||||
*/
|
||||
|
||||
// FILE: CommonDataKeys.java
|
||||
|
||||
public class CommonDataKeys {
|
||||
public static final String PROJECT = "project";
|
||||
public final String MEMBER = "member"
|
||||
}
|
||||
|
||||
// FILE: PlatformDataKeys.java
|
||||
|
||||
public class PlatformDataKeys extends CommonDataKeys {
|
||||
|
||||
}
|
||||
|
||||
// FILE: main.kt
|
||||
|
||||
fun test() {
|
||||
val project = PlatformDataKeys.PROJECT
|
||||
val member = PlatformDataKeys().MEMBER
|
||||
}
|
||||
Reference in New Issue
Block a user