mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
15 lines
268 B
Plaintext
15 lines
268 B
Plaintext
package foo;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class JavaClass {
|
|
|
|
@NotNull
|
|
@Override
|
|
public void bar(@Nullable String price) {
|
|
|
|
}
|
|
}
|
|
|
|
// KT-1043 'Implement Methods' throws a ClassCastException |