mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
23 lines
350 B
Rust
23 lines
350 B
Rust
//@ edition: 2021
|
|
|
|
#![deny(async_fn_in_trait)]
|
|
|
|
pub trait Foo {
|
|
async fn not_send();
|
|
//~^ ERROR use of `async fn` in public traits is discouraged
|
|
}
|
|
|
|
mod private {
|
|
pub trait FooUnreachable {
|
|
async fn not_send();
|
|
// No warning
|
|
}
|
|
}
|
|
|
|
pub(crate) trait FooCrate {
|
|
async fn not_send();
|
|
// No warning
|
|
}
|
|
|
|
fn main() {}
|