summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-76437-async.rs
blob: 497e269d634e5e46c88e1a7726b678fee881f032 (plain)
1
2
3
4
5
6
7
//@ edition:2018

mod t {
    async pub fn t() {}
    //~^ ERROR expected one of `extern`, `fn`, or `unsafe`, found keyword `pub`
    //~| HELP visibility `pub` must come before `async`
}