mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
320 B
Rust
18 lines
320 B
Rust
//@ aux-build:issue-81839.rs
|
|
//@ edition:2018
|
|
|
|
extern crate issue_81839;
|
|
|
|
async fn test(ans: &str, num: i32, cx: &issue_81839::Test) -> u32 {
|
|
match num {
|
|
1 => {
|
|
cx.answer_str("hi");
|
|
}
|
|
_ => cx.answer_str("hi"), //~ `match` arms have incompatible types
|
|
}
|
|
|
|
1
|
|
}
|
|
|
|
fn main() {}
|