File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,7 @@ build test/gpr_3865_foo.cmi test/gpr_3865_foo.cmj : cc test/gpr_3865_foo.re | $s
310310build test/gpr_3875_test.cmi test/gpr_3875_test.cmj : cc test/gpr_3875_test.ml | test/mt.cmj $stdlib
311311build test/gpr_3877_test.cmi test/gpr_3877_test.cmj : cc test/gpr_3877_test.ml | $stdlib
312312build test/gpr_3895_test.cmi test/gpr_3895_test.cmj : cc test/gpr_3895_test.ml | $stdlib
313+ build test/gpr_3897_test.cmi test/gpr_3897_test.cmj : cc test/gpr_3897_test.ml | $stdlib
313314build test/gpr_3931_test.cmi test/gpr_3931_test.cmj : cc test/gpr_3931_test.ml | $stdlib
314315build test/gpr_405_test.cmj : cc_cmi test/gpr_405_test.ml | test/gpr_405_test.cmi $stdlib
315316build test/gpr_405_test.cmi : cc test/gpr_405_test.mli | $stdlib
Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+
3+
4+ function Make ( U ) {
5+ return U ;
6+ }
7+
8+ exports . Make = Make ;
9+ /* No side effect */
Original file line number Diff line number Diff line change 1+ module type S = sig
2+ val x : int
3+ end
4+
5+
6+
7+
8+ module Make (U : S ) = struct
9+ include U
10+ end
You can’t perform that action at this time.
0 commit comments