Broken ppx_inline_test?

Hello,

I’m having trouble compiling something with ppx_inline_test under OCaml 5.3 and I’m not sure what’s happening. When using module%test, I simply get Error: value expected (both in lsp and when building).

I’ve tried literally copy-pasting the test module from ppx_inline_test’s own test suite and I get the same thing. I haven’t found anything here or on Google, does anyone know how to fix it?

The same for me but it seems legacy syntax works.

let%test_module "name" =
  (module struct
    let%expect_test _ = ()
  end)
;;

That does work, thank you!!