summary refs log tree commit diff
path: root/src/test/run-fail/explicit-fail-msg.rs
blob: 8014ee75c1596c5f3ab6ca8ea75200a3b654f989 (plain)
1
2
3
4
// error-pattern:wooooo
fn main() {
    let mut a = 1; if 1 == 1 { a = 2; } fail "woooo" + "o";
}