summary refs log tree commit diff
path: root/src/test/run-fail/result-get-fail.rs
blob: 5a32f7d0ba4823350e8210c80a76cd0b3c10e1e2 (plain)
1
2
3
4
// error-pattern:get called on error result: ~"kitty"
fn main() {
  log(error, result::get(result::err::<int,str>("kitty")));
}