mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
11 lines
259 B
Java
11 lines
259 B
Java
// "Bring 'String con' into scope" "true-preview"
|
|
class a {
|
|
private void ffff(String c) {
|
|
String con = null;
|
|
try {
|
|
con = null;
|
|
} finally {
|
|
ffff(con);// This method doesn't mind con == null.
|
|
}
|
|
}
|
|
} |