This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
let run () = print_endline "private module bar"
|
||||
|
|
@ -0,0 +1 @@
|
|||
val run : unit -> unit
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
(library
|
||||
(name foo)
|
||||
(modules foo bar)
|
||||
(wrapped false)
|
||||
(private_modules bar))
|
||||
|
||||
(executable
|
||||
(name runfoo)
|
||||
(modules runfoo)
|
||||
(libraries foo))
|
||||
|
||||
(alias
|
||||
(name default)
|
||||
(action (run ./runfoo.exe)))
|
||||
|
|
@ -0,0 +1 @@
|
|||
(lang dune 1.2)
|
||||
|
|
@ -0,0 +1 @@
|
|||
let linkme = Bar.run ()
|
||||
|
|
@ -0,0 +1 @@
|
|||
val linkme : unit
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
$ dune build
|
||||
private module bar
|
||||
|
|
@ -0,0 +1 @@
|
|||
ignore Foo.linkme
|
||||
Loading…
Add table
Add a link
Reference in a new issue