FILE: namedArgument.kt
    public? final? fun foo(first: String = String(), second: Boolean = Boolean(true), third: Double = Double(3.1415)): R|kotlin/Unit| {
    }
    public? final? fun test(): R|kotlin/Unit| {
        foo#()
        foo#(String(Alpha), Boolean(false), Double(2.71))
        foo#(first = String(Hello), second = Boolean(true))
        foo#(third = Double(1.0).unaryMinus#(), first = String(123))
        foo#(ERROR_EXPR(Argument is absent))
    }
