kz89
Results
2
comments of
kz89
```Kotlin state(StateMachine.Matcher.any()) { on { transitionTo(State.Start) } } ```
This doesn't work because if there are multiple definitions for the same state then the first one is used. This is from `StateMachine.kt`: ``` private fun STATE.getDefinition() = graph.stateDefinitions .filter...