This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
exes: empty list of names/public names
|
||||
$ cat >dune-project <<EOF
|
||||
> (lang dune 2.0)
|
||||
> EOF
|
||||
$ cat >dune <<EOF
|
||||
> (executables (names))
|
||||
> EOF
|
||||
$ dune build
|
||||
File "dune", line 1, characters 13-20:
|
||||
1 | (executables (names))
|
||||
^^^^^^^
|
||||
Error: Not enough arguments for "names"
|
||||
[1]
|
||||
$ cat >dune <<EOF
|
||||
> (executables (public_names))
|
||||
> EOF
|
||||
$ dune build
|
||||
File "dune", line 1, characters 13-27:
|
||||
1 | (executables (public_names))
|
||||
^^^^^^^^^^^^^^
|
||||
Error: Not enough arguments for "public_names"
|
||||
[1]
|
||||
$ cat >dune <<EOF
|
||||
> (tests (names))
|
||||
> EOF
|
||||
$ dune build
|
||||
File "dune", line 1, characters 7-14:
|
||||
1 | (tests (names))
|
||||
^^^^^^^
|
||||
Error: Not enough arguments for "names"
|
||||
[1]
|
||||
Loading…
Add table
Add a link
Reference in a new issue