Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 459 Bytes

README.md

File metadata and controls

29 lines (26 loc) · 459 Bytes

Unexpected behavior: file bin/hello.ml is linked in doesntwork.exe even though doesntwork.ml only depends on Hellolib.Hello whose source is lib/hello.ml.

Reproduction steps:

$ make

Output:

jbuilder runtest -f
         run alias bin/runtest
+ ./works.exe
Hello
+ ./doesntwork.exe
This shouldn't happen.
Hello

Expected output:

jbuilder runtest -f
         run alias bin/runtest
+ ./works.exe
Hello
+ ./doesntwork.exe
Hello