rust/tests/ui/unsafe/unsafe-block-without-braces.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
445 B
Plaintext
Raw Normal View History

error: expected `{`, found `std`
2018-12-25 15:56:47 +00:00
--> $DIR/unsafe-block-without-braces.rs:3:9
|
LL | unsafe //{
| ------ while parsing this `unsafe` expression
2018-02-24 23:59:34 +00:00
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