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