mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
291 B
Java
10 lines
291 B
Java
import test.TestPackage;
|
|
|
|
// Check absence of 'Static method reference via subclass warning' for kotlin usages
|
|
public class UsingKotlinPackageDeclarations {
|
|
public static int test() {
|
|
TestPackage.foo();
|
|
TestPackage.setBar(15);
|
|
return TestPackage.getBar();
|
|
}
|
|
} |