PageRenderTime 50ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/src/test/run-fail/result-get-fail.rs

https://bitbucket.org/graydon/rust
Rust | 4 lines | 3 code | 0 blank | 1 comment | 0 complexity | aa8d0dd58e7efc0a0b190f951ff5b50d MD5 | raw file
  1. // error-pattern:get called on error result: ~"kitty"
  2. fn main() {
  3. log(error, result::get(&result::Err::<int,~str>(~"kitty")));
  4. }