Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
specialization
/
issue-63716-parse-async.rs
blob: 26fd84bbf31f78b675d3f6d680fed383f5f836c8 [
file
]
// Ensure that `default async fn` will parse.
// See issue #63716 for details.
//@ check-pass
//@ edition:2018
#![
feature
(
specialization
)]
fn
main
()
{}
#[
cfg
(
false
)]
impl
Foo
for
Bar
{
default async
fn
baz
()
{}
}