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