mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 17:30:29 +00:00
12 lines
175 B
Rust
12 lines
175 B
Rust
//@ run-pass
|
|
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
let _a = #[coroutine] || {
|
|
yield;
|
|
let a = String::new();
|
|
a.len()
|
|
};
|
|
}
|