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,8 @@
(alias
(name test-path-no-dep)
(action
(chdir
sub-tree/dir
(progn
(echo "%{path-no-dep:file-that-does-not-exist}\n")
(echo "%{path-no-dep:.}\n")))))

View file

@ -0,0 +1,15 @@
%{path-no-dep:string}
---------------------
This form does not exist, but displays an hint:
$ dune build @test-path-no-dep
File "dune", line 7, characters 15-54:
7 | (echo "%{path-no-dep:file-that-does-not-exist}\n")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error: %{path-no-dep:..} was deleted in version 1.0 of the dune language.
File "dune", line 8, characters 15-31:
8 | (echo "%{path-no-dep:.}\n")))))
^^^^^^^^^^^^^^^^
Error: %{path-no-dep:..} was deleted in version 1.0 of the dune language.
[1]