blob: 3314b4e20f90bf58ae0f829873e6c27e593a0c95 [file] [log] [blame] [edit]
// Ensure that `default async fn` will parse.
// See issue #63716 for details.
//@ check-pass
//@ edition:2018
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
fn main() {}
#[cfg(FALSE)]
impl Foo for Bar {
default async fn baz() {}
}