Files
rust/tests/ui/issues/issue-13202.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
137 B
Rust
Raw Normal View History

2020-04-16 15:50:32 +09:00
//@ run-fail
//@ error-pattern:bad input
//@ needs-subprocess
fn main() {
Some("foo").unwrap_or(panic!("bad input")).to_string();
}