mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
16 lines
445 B
Plaintext
16 lines
445 B
Plaintext
error: expected `{`, found `std`
|
|
--> $DIR/unsafe-block-without-braces.rs:3:9
|
|
|
|
|
LL | unsafe //{
|
|
| ------ while parsing this `unsafe` expression
|
|
LL | std::mem::transmute::<f32, u32>(1.0);
|
|
| ^^^ expected `{`
|
|
|
|
|
help: try placing this code inside a block
|
|
|
|
|
LL | { std::mem::transmute::<f32, u32>(1.0); }
|
|
| + +
|
|
|
|
error: aborting due to 1 previous error
|
|
|