Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
async-await
/
in-trait
/
issue-102219.rs
blob: 9a35f6515cb1a5042d347347dca5a8cc8508fff3 [
file
] [
log
] [
blame
]
// compile-flags:--crate-type=lib
// edition:2021
// check-pass
#![
feature
(
async_fn_in_trait
)]
#![
allow
(
incomplete_features
)]
trait
T
{
async
fn
foo
();
}