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