mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
The original purpose was to create a test that parameter names are inherited on a K-J-K hierarchy when "K-J" is compiled to bytecode, but that's not possible right now because of KT-4509
6 lines
66 B
Java
Vendored
6 lines
66 B
Java
Vendored
package test;
|
|
|
|
public interface A {
|
|
void foo(int javaName);
|
|
}
|