mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
9 lines
190 B
Rust
9 lines
190 B
Rust
//@ edition:2021
|
|
//@ proc-macro: issue-107113.rs
|
|
|
|
#[macro_use]
|
|
extern crate issue_107113;
|
|
|
|
#[issue_107113::main] //~ ERROR mismatched types [E0308]
|
|
async fn main() -> std::io::Result<()> {}
|