vmironov
12/05/2016, 7:48 PMpublic class Foo {
public void foo(@NotNull String hello) {
// empty
}
}
class Bar : Foo() {
@Suppress("NOTHING_TO_OVERRIDE", "ACCIDENTAL_OVERRIDE")
override fun foo(hello: String?) {
println("Foo $hello")
}
}