blob: b82f2ca2538ae2a63b0152a9b05f957600fb5f09 [file] [log] [blame]
class Test {
{
((Bar) Test::length)._("");
}
public static Integer length(String s) {
return s.length();
}
interface Bar {
Integer _(String s);
}
}