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