blob: 8782f3e262e76a031ace0abc2e5bb9a4f1a55d34 [file] [log] [blame]
module "badsimple.states"
statemachine Machine
{
events START STOP;
state Start
{
STOP => Stop
}
state Stop
{
START => Start
}
}