009 dir import dotted

✗ Failing This test is currently failing.

Failed: frontend

Failure Output

error[KORU010]: '_' is only legal as the sole body of a branch handler
  --> tests/regression/100_MODULE_SYSTEM/110_IMPORTS/110_009_dir_import_dotted/input.kz:13:0
    |
 13 | ~app/lib/raylib/graphics:z-buffer.render(width: 1024, height: 768): _ |> app/lib/raylib/graphics:z-buffer.clear() |> app/lib/raylib/graphics:sprite.draw(x: 100, y: 200) |> app/lib/raylib/graphics:texture.load(path: "sprite.png"): _ |> _
    | ^
  hint: '_' has meaning only as `| branch [binding] |> _`. Chaining `|> _` after another step is meaningless — drop the `|> _`.

Code

input.kz

Expected output

render 1024x768
clear z-buffer
draw sprite at 100,200
load texture sprite.png

Imported Files

lib/raylib/graphics.kz

Test Configuration

MUST_RUN