summaryrefslogtreecommitdiffstats
path: root/test/samples/uscxml/chartToFSM/test-event-set-conflict.scxml
blob: cc7623892f332df220a1cd6f7228be61a0456b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<scxml>
  <state id="s0">
    <!-- These transitions all conflict, only the first one ought to be taken -->
    <transition target="s1" />
    <transition target="s2" />
    <transition target="s3" />
  </state>
  <state id="s1">
    <transition target="pass" />
  </state>
  <state id="s2">
    <transition target="fail" />
  </state>
  <state id="s3">
    <transition target="fail" />
  </state>
  <final id="pass" />
  <final id="fail" />
</scxml>