1
1
mirror of https://github.com/casey/just.git synced 2024-11-22 18:34:06 +03:00
This commit is contained in:
Casey Rodarmor 2024-10-31 17:51:45 -07:00
parent fa92886eb8
commit 0da196645c

View File

@ -77,7 +77,7 @@ fn and_has_higher_precedence_than_or() {
}
#[test]
fn misc() {
fn nesting() {
evaluate("'' || '' || '' || '' || 'foo'", "foo");
evaluate("'foo' && 'foo' && 'foo' && 'foo' && 'bar'", "bar");
}