mte/unikernel/duniverse/dune_/test/blackbox-tests/test-cases/include-qualified/pp-github6866.t
2025-11-11 02:07:51 +01:00

17 lines
337 B
Raku

Preprocessing should work when there's modules with the same name
$ cat >dune-project <<EOF
> (lang dune 3.7)
> EOF
$ cat >dune <<EOF
> (include_subdirs qualified)
> (library
> (name foo)
> (preprocess (action (system "cat %{input-file}"))))
> EOF
$ mkdir bar/
$ touch baz.ml bar/baz.ml
$ dune build @check