Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
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
()
{}
}