]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/issues/issue-76437-async.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / issues / issue-76437-async.rs
1 // edition:2018
2
3 mod t {
4 async pub fn t() {}
5 //~^ ERROR expected one of `extern`, `fn`, or `unsafe`, found keyword `pub`
6 //~| HELP visibility `pub` must come before `async`
7 }