blob: 786bf4333188c7490bb93f1198c4bcbbf81437d5 [file] [log] [blame]
interface FunctionFromByteCode<T, R> {
R apply(T t);
}
public class FromByteCode {
FunctionFromByteCode<String, String> f1 = String::toString;
}