mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: d7ee95a34123b69ad5ad2b3f59a5da614412e074
9 lines
124 B
Java
9 lines
124 B
Java
// "Make 'a' abstract" "true-preview"
|
|
import java.io.*;
|
|
|
|
abstract class a {
|
|
void f() {
|
|
}
|
|
abstract<caret> void f2();
|
|
}
|