mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
16 lines
261 B
Java
16 lines
261 B
Java
// "Annotate overriding methods as '@NotNull'" "true"
|
|
|
|
import org.jetbrains.annotations.*;
|
|
|
|
public class XEM {
|
|
<caret>@NotNull
|
|
String f(){
|
|
return "";
|
|
}
|
|
}
|
|
class XC extends XEM {
|
|
@NotNull String f() {
|
|
return "";
|
|
}
|
|
}
|