mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
188 B
Rust
8 lines
188 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<()> {}
|