mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 05bdca159a63027ea0d1e3d767d4adb9b258f47e
17 lines
422 B
Java
17 lines
422 B
Java
abstract public class a1 {
|
|
<error descr="Abstract methods cannot have a body">abstract void f()</error> {}
|
|
<error descr="Native methods cannot have a body">native void ff()</error> {}
|
|
|
|
void f2() {
|
|
new ii() {
|
|
public int iif(int i) {
|
|
return 0;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
interface ii {
|
|
<error descr="Interface abstract methods cannot have a body">int iif(int i) throws Exception</error> { return 2; }
|
|
}
|