grace icon indicating copy to clipboard operation
grace copied to clipboard

🐛 Bug: Multi-line reports with empty messages

Open johnyob opened this issue 9 months ago • 0 comments

Context

When printing multi-line labels with empty messages, the 'bottom line' is missing:

Current Behaviour

    error[E012]: generic type variable escapes its scope
        ┌─ expect_test.ml:2:3
      1 │    let escape = fun f ->
      2 │ ╭    forall (type 'a) ->
      3 │ │      (f : 'a -> 'a)
        │ ╰──
      4 │    ;;

Expected Behaviour

    error[E012]: generic type variable escapes its scope
        ┌─ expect_test.ml:2:3
      1 │    let escape = fun f ->
      2 │ ╭    forall (type 'a) ->
      3 │ │      (f : 'a -> 'a)
        │ ╰───────────────────^
      4 │    ;;

johnyob avatar Apr 07 '25 16:04 johnyob