<?xml version="1.0"?>
<!-- @ Copyright 1998-2003 W3C (MIT, ERCIM, Keio), All Rights Reserved. See http://www.w3.org/Consortium/Legal/. @ -->
<vxml version="2.0" 
  xmlns="http://www.w3.org/2001/vxml" 
  xmlns:conf="http://www.w3.org/2002/vxml-conformance"
>

<!-- Assertion 1099
After a form level grammar is matched, a form level <filled> element will not be queued 
for execution if none of the fields listed in the namelist of the <filled> has just been 
assigned a value and the mode is "any" .
-->

  <catch><conf:fail expr="'catch-all caught ' + _event"/></catch>

  <form>
 
    <conf:grammar utterance="alpha">
      <conf:key name="x" value="valueX"/>
    </conf:grammar>

    <filled mode="any" namelist="y z">
      <conf:fail reason="y or z will never be assigned in this form, so this form level filled element should not be executed."/>
    </filled>

    <initial>
      <conf:speech value="alpha"/>
    </initial>

    <field name="x"/>

    <block>
      <conf:pass/>
    </block>

    <field name="y"/>

    <field name="z"/>

  </form>

</vxml>
