This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1 @@
let _ = L.P.do_print ()

View file

@ -0,0 +1,3 @@
(executable
(name bar)
(libraries l))

View file

@ -0,0 +1,18 @@
$ mkfifo src/foo
$ dune build @all
$ _build/default/bar.exe
hi!
$ rm -f src/foo
Check the error message Dune produces when it encounters a broken
symlink:
$ ln -s broken-link src/foo
$ dune build @all
File "src/foo", line 1, characters 0-0:
Error: File unavailable: src/foo
Broken symbolic link
[1]
$ _build/default/bar.exe
hi!
$ rm -f src/foo

View file

@ -0,0 +1,2 @@
(library
(name l))

View file

@ -0,0 +1 @@
let do_print () = Format.printf "hi!@\n%!"