]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/issue-77993-2.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / issue-77993-2.rs
CommitLineData
29967ef6
XL
1// edition:2018
2
3async fn test() -> Result<(), Box<dyn std::error::Error>> {
4 macro!();
5 //~^ ERROR expected identifier, found `!`
6 Ok(())
7}
8
9fn main() {}