mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-16 06:19:49 +00:00
11 lines
169 B
Java
11 lines
169 B
Java
//version 9:
|
|
import java.io.PrintWriter;
|
|
public class TryWithResourcesVarRef {
|
|
{
|
|
PrintWriter pw = new PrintWriter(System.out);
|
|
try (pw) {
|
|
pw.println();
|
|
}
|
|
}
|
|
}
|