mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 01:13:30 +00:00
Estimated hours taken: 0.1 tests/hard_coded/multimode.m: tests/hard_coded/multimode.exp: Fix a bug in this test case -- one of the modes was commented out, resulting in a determinism error.
15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
func0 = out
|
|
func1(in) = out
|
|
func1(out) = out
|
|
func2(in, in) = out
|
|
func2(in, out) = out
|
|
func2(out, in) = out
|
|
func2(out, out) = out
|
|
test0
|
|
test1(in)
|
|
test1(out)
|
|
test2(in, in)
|
|
test2(in, out)
|
|
test2(out, in)
|
|
test2(out, out)
|