mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
11 lines
232 B
Rust
11 lines
232 B
Rust
// Regression test for <https://github.com/rust-lang/rust/issues/144527>.
|
|
|
|
#![feature(yield_expr, coroutines)]
|
|
|
|
fn main() {
|
|
#[coroutine] || {
|
|
0 as u8.yield
|
|
//~^ ERROR cast cannot be followed by `.yield`
|
|
};
|
|
}
|