mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
400 B
Java
13 lines
400 B
Java
package test;
|
|
|
|
import java.lang.UnsupportedOperationException;
|
|
import java.util.*;
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
public class WrongValueParameterStructure1 {
|
|
@KotlinSignature("fun foo(a : String<Int?>, b : List<Map.Entry<String?, String>?>) : String")
|
|
public String foo(String a, List<Map.Entry<String, String>> b) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|