mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 21:53:23 +00:00
10 lines
211 B
Rust
10 lines
211 B
Rust
// Regression test for #5238 / https://github.com/rust-lang/rust/pull/69562
|
|
|
|
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
let _ = #[coroutine]
|
|
|| {
|
|
yield;
|
|
};
|
|
}
|