Hello! Sorry if this is a duplicate (I couldn't find it, but I know I stumbled on this before and perhaps didn't report the bug).
I want to start a sequence diagram with an object being created, but the create message is sent to the lifeline rather than showing a new object. The simplest example:
@startuml
create a
-> a : create
@enduml
Or a more complex one:
@startuml
participant a
participant b
participant c
create b
a -> b : create
create c
-> c : create
@enduml