提交 a8a490ea 编写于 作者: P Pavel V. Talanov 提交者: Pavel V. Talanov

Test multifile facades in mpp projects

上级 8185b1bf
@file:kotlin.jvm.JvmName("MultifileKt")
@file:kotlin.jvm.JvmMultifileClass
package j
fun common() {
}
\ No newline at end of file
package j;
public class Use {
public static void use() {
j.MultifileKt.common();
j.MultifileKt.j();
}
}
\ No newline at end of file
@file:kotlin.jvm.JvmName("MultifileKt")
@file:kotlin.jvm.JvmMultifileClass
package j
fun j() {}
\ No newline at end of file
package j;
public class Use {
public static void use() {
j.MultifileKt.common();
j.MultifileKt.j();
}
}
\ No newline at end of file
......@@ -94,6 +94,11 @@ public class MultiPlatformHighlightingTestGenerated extends AbstractMultiPlatfor
runTest("idea/testData/multiModuleHighlighting/multiplatform/javaUsesPlatformFacade/");
}
@TestMetadata("multifileFacade")
public void testMultifileFacade() throws Exception {
runTest("idea/testData/multiModuleHighlighting/multiplatform/multifileFacade/");
}
@TestMetadata("nestedClassWithoutImpl")
public void testNestedClassWithoutImpl() throws Exception {
runTest("idea/testData/multiModuleHighlighting/multiplatform/nestedClassWithoutImpl/");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册