Files
rust/tests/ui/proc-macro/issue-107113-wrap.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
215 B
Rust
Raw Normal View History

//@ edition:2021
//@ proc-macro: issue-107113.rs
//@ ignore-backends: gcc
#[macro_use]
extern crate issue_107113;
#[issue_107113::main] //~ ERROR mismatched types [E0308]
async fn main() -> std::io::Result<()> {}