rust/tests/ui/unsafe-fields-parse.stderr
Luca Versari 9022bb2d6f Implement the unsafe-fields RFC.
Co-Authored-By: Jacob Pratt <jacob@jhpratt.dev>
2024-11-21 19:32:07 +01:00

19 lines
537 B
Plaintext

error: expected type, found keyword `unsafe`
--> $DIR/unsafe-fields-parse.rs:7:15
|
LL | enum A {
| - while parsing this enum
LL | TupleLike(unsafe u32),
| ^^^^^^ expected type
|
= help: enum variants can be `Variant`, `Variant = <integer>`, `Variant(Type, ..., TypeN)` or `Variant { fields: Types }`
error: expected type, found keyword `unsafe`
--> $DIR/unsafe-fields-parse.rs:10:10
|
LL | struct B(unsafe u32);
| ^^^^^^ expected type
error: aborting due to 2 previous errors