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,4 @@
(library
(name foo)
(public_name foo)
(modules_without_implementation intf))

View file

@ -0,0 +1 @@
module T = Intf

View file

@ -0,0 +1 @@
type t = A | B | C

View file

@ -0,0 +1,4 @@
Successes:
$ dune build --display short --debug-dep 2>*1 | grep -i cma
[1]

View file

@ -0,0 +1,5 @@
module X = Foo.T
let x = X.A
include Foo.T

View file

@ -0,0 +1,4 @@
(library
(name bar)
(public_name foo.bar)
(libraries foo))