rust/tests/ui/parser/fn-header-syntactic-pass.rs

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

48 lines
872 B
Rust
Raw Normal View History

// Ensures that all `fn` forms can have all the function qualifiers syntactically.
//@ check-pass
//@ edition:2018
fn main() {}
#[cfg(FALSE)]
fn syntax() {
async fn f();
unsafe fn f();
const fn f();
extern "C" fn f();
const async unsafe extern "C" fn f();
trait X {
async fn f();
unsafe fn f();
const fn f();
extern "C" fn f();
const async unsafe extern "C" fn f();
}
impl X for Y {
async fn f();
unsafe fn f();
const fn f();
extern "C" fn f();
const async unsafe extern "C" fn f();
}
impl Y {
async fn f();
unsafe fn f();
const fn f();
extern "C" fn f();
const async unsafe extern "C" fn f();
}
2020-09-01 21:12:52 +00:00
extern "C" {
fn f();
fn f();
fn f();
fn f();
fn f();
}
}