blob: f5d4af731e8e554b6f12923f76c25c028bd04e42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- Unqualified SCXML Namespace includes qualified -> error -->
<scxml
xmlns:xi="http://www.w3.org/2001/XInclude">
<!-- include from file -->
<xi:include href="test-fail-namespace4.include" />
<state id="s0">
<transition target="fail" />
</state>
<final id="fail">
<onentry><log expr="FAIL!" /></onentry>
</final>
<final id="pass">
<onentry><log expr="PASS!" /></onentry>
</final>
</scxml>
|