mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
a34c26e7ec
Almost all callers want this anyway, and now we can use it to also return fed bodies
7 lines
122 B
Rust
7 lines
122 B
Rust
fn main() {
|
|
let _my_usize = const {
|
|
let x: bool;
|
|
while x {} //~ ERROR: `x` isn't initialized
|
|
};
|
|
}
|