<?xml version="1.0" encoding="UTF-8"?>
<!-- @ 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">
	<catch>
		<conf:fail expr="'catch-all caught ' + _event"/>
	</catch>
	<form>
		<var name="var1" expr="3*3"/>
		<block>
			<if cond="var1 == 9">
					<conf:comment> Correctly passed through the if statement </conf:comment>
			<elseif cond=" var1 != undefined"/>
					<conf:fail reason="Can't get here (elseif): already passed into if statement"/>
			<else/>
					<conf:fail reason="Can't get here (else): already passed into if statement"/>
			</if>
			<conf:pass/>
		</block>
	</form>
</vxml>
