055 inline pipe in string

✓ Passing This code compiles and runs correctly.

Code

// Test: Inline continuation tokens inside string literals are not continuations.
// The parser should ignore "|>" inside quoted strings.

~event greet { text: []const u8 }
| greeted {}

~greet = greeted {}

// The "|>" here is part of the string, not an inline continuation.
~greet(text: "Hello |> World")
| greeted |> _
input.kz