[Bug 22317] modules-19 through modules-24 might raise an unexpected type error

https://www.w3.org/Bugs/Public/show_bug.cgi?id=22317

Josh Spiegel <josh.spiegel@oracle.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |josh.spiegel@oracle.com

--- Comment #5 from Josh Spiegel <josh.spiegel@oracle.com> ---
In the same module, this function needs the same fix:

declare function mod3:function3() as schema-element(simple:integer)
{
  <simple:integer>2</simple:integer>
};

This should be:

declare function mod3:function3() as schema-element(simple:integer)
{
  validate { <simple:integer>2</simple:integer> }
};

For the same reasons mentioned in comment 0.  I will update CVS.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 7 August 2015 18:54:47 UTC