test: check and format tests for logical op chain

This commit is contained in:
rvcas
2023-08-14 22:05:48 -04:00
committed by Lucas
parent e14d51600f
commit 0ff64e3bac
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
source: crates/aiken-lang/src/tests/format.rs
description: "Code:\n\nfn smth() { and { foo, bar, or { bar, foo }} }\n"
---
fn smth() {
and {
foo,
bar,
or {
bar,
foo,
},
}
}