This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
Foo.run ();;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
(library
|
||||
(modules foo)
|
||||
(name foo.bar)
|
||||
(wrapped false))
|
||||
|
||||
(executable
|
||||
(modules bar)
|
||||
(name bar)
|
||||
(libraries foo.bar))
|
||||
|
|
@ -0,0 +1 @@
|
|||
(lang dune 1.1)
|
||||
|
|
@ -0,0 +1 @@
|
|||
let run () = print_endline "foo"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
lib: invalid name
|
||||
$ dune exec ./bar.exe
|
||||
File "dune", line 3, characters 7-14:
|
||||
3 | (name foo.bar)
|
||||
^^^^^^^
|
||||
Error: "foo.bar" is an invalid library name.
|
||||
Library names must be non-empty and composed only of the following
|
||||
characters: 'A'..'Z', 'a'..'z', '_' or '0'..'9'.
|
||||
Hint: foo_bar would be a correct library name
|
||||
[1]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue