How to draw an arrow going from inner othogonal state outside it's outer composite state?
I've tried this:
@startuml
[*] --> Initialized
state Fail
state Initialized {
[*] --> Unregistered
state Unregistered
Unregistered --> Registered
' Unregistered --> Fail
--
[*] --> TestOrthogonal
state TestOrthogonal
}
@enduml
If I uncomment:
"Unregistered --> Fail"
I get:
"State within concurrent state cannot be linked out of this concurrent state (between Unregistered and Fail)."
Is this some kind of limitation or am I using wrong syntax?