BaseXdb / basex

BaseX Main Repository.
http://basex.org
BSD 3-Clause "New" or "Revised" License
661 stars 268 forks source link

XQuery: Function Arity of Partial Function Applications #2166

Closed ChristianGruen closed 1 year ago

ChristianGruen commented 1 year ago
declare function local:a() { function($a) { $a(1) }(local:b(2, ?)) };
declare function local:b($b, $c) { };
local:a()

Expected: (), returned: XPTY0004

Culprit: bba825d5b7001377e06a276a4af47863659fda08