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