Bend/tests/snapshots/compile_file__redex_order.bend.snap
2024-05-15 00:25:46 +02:00

23 lines
281 B
Plaintext

---
source: tests/golden_tests.rs
input_file: tests/golden_tests/compile_file/redex_order.bend
---
@a = (a a)
@b = (a a)
@c = (a a)
@foo = (a d)
& @a ~ (c d)
& @b ~ (b c)
& @c ~ (a b)
@foo2 = c
& @a ~ (b c)
& @b ~ (a b)
& @c ~ (0 a)
@main = a
& @foo ~ (@foo2 a)