blob: 00c0b291a1adab167932c2bb9ec7fe08468007e7 [file] [log] [blame]
// 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() {}
}