Files
kotlin/compiler/testData/loadJava/compiledJava/kotlinSignature/error/WrongValueParameterStructure1.java

10 lines
209 B
Java
Vendored

package test;
import java.util.*;
public class WrongValueParameterStructure1 {
public String foo(String a, List<Map.Entry<String, String>> b) {
throw new UnsupportedOperationException();
}
}