mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
186 B
Rust
9 lines
186 B
Rust
// edition:2021
|
|
// aux-build:issue-107113.rs
|
|
|
|
#[macro_use]
|
|
extern crate issue_107113;
|
|
|
|
#[issue_107113::main] //~ ERROR mismatched types [E0308]
|
|
async fn main() -> std::io::Result<()> {}
|