mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 07:28:24 +07:00
- extract "java.lang.IO" - tests for allowUnresolved - more reliable works with varargs GitOrigin-RevId: 8376baaa86afa3806cb096cffd42e9ed0db0d451
9 lines
186 B
Java
9 lines
186 B
Java
import java.io.PrintStream;
|
|
|
|
public static void main(String[] args) {
|
|
PrintStream stream = getSome();
|
|
stream.<caret>println("Hello");
|
|
}
|
|
|
|
|
|
private static native PrintStream getSome(); |