}
@Test
public void testIopNamedInvocations(){
assertErrors("NamedInvocations",
new CompilerError(30, "overloaded declarations may not be called using named arguments: 'createTempFile'"),
new CompilerError(30, "ambiguous callable reference to overloaded method or class: 'createTempFile' is overloaded"),
new CompilerError(30, "named invocations of Java methods not supported"),
new CompilerError(32, "named invocations of Java methods not supported"),
new CompilerError(35, "named invocations of Java methods not supported"),
new CompilerError(35, "overloaded declarations may not be called using named arguments: 'createTempFile'"),
new CompilerError(35, "ambiguous callable reference to overloaded method or class: 'createTempFile' is overloaded"),
new CompilerError(37, "named invocations of Java methods not supported")
);
}