about summary refs log tree commit diff
path: root/src/test/run-fail/explicit-fail-msg.rs
blob: 793260210b088b706a93cd32b4ebc165f3b594b5 (plain)
1
2
3
4
5
6
7
8
9
10


// error-pattern:wooooo
fn main() {
  auto a = 1;
  if (1 == 1) {
    a = 2;
  }
  fail "woooo" + "o";
}