rune 0.14.1

The Rune Language, an embeddable dynamic programming language for Rust.
Documentation
// This tests an issue where the temporary value inside of the `&&` operator
// overwrites the left hand side slot.
// https://github.com/rune-rs/rune/issues/830

#[test]
fn if_stmt() {
    let value = true;

    if value && false {
        panic!("should not be reached");
    }

    assert!(value);
}

#[test]
fn else_if_stmt() {
    let value = true;

    if false {
        panic!("should not be reached");
    } else if value && false {
        panic!("should not be reached");
    }

    assert!(value);
}

#[test]
fn while_stmt() {
    let value = true;

    while value && false {
        panic!("should not be reached");
    }

    assert!(value);
}

#[test]
fn match_stmt() {
    let value = true;

    let value2 = match true {
        false => false,
        _ if value && false => panic!("should not be reached"),
        true => true,
    };

    assert!(value);
    assert!(value2);
}