We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2774dbb commit dffb407Copy full SHA for dffb407
tests/pos/t10350/Bar.scala
@@ -0,0 +1,6 @@
1
+
2
+package bar
3
4
+object Bar {
5
+ def xxx(s: String): foo.Foo = foo.Foo.create(s)
6
+}
tests/pos/t10350/Baz.java
@@ -0,0 +1,5 @@
+package foo.java;
+interface Baz {
tests/pos/t10350/Foo.java
@@ -0,0 +1,14 @@
+package foo;
+public interface Foo {
+ static Foo create(java.lang.String v) {
+ return null;
7
+ }
8
9
10
+/*
11
+5 | static Foo create(java.lang.String v) {
12
+ | ^^^^^^^^^
13
+ | value lang is not a member of foo.java
14
+ */
0 commit comments