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,2 @@
(lang dune 1.7)
(name a)

View file

@ -0,0 +1,5 @@
(library
(name a_kernel)
(public_name a.kernel)
(kind ppx_rewriter)
(libraries ppxlib))

View file

@ -0,0 +1,5 @@
(library
(name a)
(public_name a)
(kind ppx_rewriter)
(libraries a_kernel))

View file

@ -0,0 +1,5 @@
(library
(name b)
(public_name b)
(preprocess
(pps a)))

View file

@ -0,0 +1,2 @@
(lang dune 1.7)
(name b)

View file

@ -0,0 +1,4 @@
This test reproduces a scope resolution bug when resolving the preprocessor of a
library.
$ dune build b/b.cma @install