mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-10 17:07:36 +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<()> {}
|