mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
14 lines
190 B
Rust
14 lines
190 B
Rust
//@ edition:2018
|
|
//@ check-pass
|
|
|
|
trait T {
|
|
async fn foo() {}
|
|
async fn bar(&self) {}
|
|
async fn baz() {
|
|
// Nested item must not ICE.
|
|
fn a() {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|