mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
Clarify that Rust
is default repr
This commit is contained in:
parent
f42d361a22
commit
1f7bad0d12
@ -706,7 +706,7 @@ passes_unrecognized_field =
|
|||||||
|
|
||||||
passes_unrecognized_repr_hint =
|
passes_unrecognized_repr_hint =
|
||||||
unrecognized representation hint
|
unrecognized representation hint
|
||||||
.help = valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
.help = valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
passes_unused =
|
passes_unused =
|
||||||
unused attribute
|
unused attribute
|
||||||
|
@ -32,7 +32,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(nothing)]
|
LL | #[repr(nothing)]
|
||||||
| ^^^^^^^
|
| ^^^^^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
error[E0552]: unrecognized representation hint
|
error[E0552]: unrecognized representation hint
|
||||||
--> $DIR/issue-43988.rs:18:12
|
--> $DIR/issue-43988.rs:18:12
|
||||||
@ -40,7 +40,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(something_not_real)]
|
LL | #[repr(something_not_real)]
|
||||||
| ^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
error[E0518]: attribute should be applied to function or closure
|
error[E0518]: attribute should be applied to function or closure
|
||||||
--> $DIR/issue-43988.rs:30:5
|
--> $DIR/issue-43988.rs:30:5
|
||||||
|
@ -4,7 +4,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(uwu)]
|
LL | #[repr(uwu)]
|
||||||
| ^^^
|
| ^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
error[E0552]: unrecognized representation hint
|
error[E0552]: unrecognized representation hint
|
||||||
--> $DIR/invalid_repr_list_help.rs:6:8
|
--> $DIR/invalid_repr_list_help.rs:6:8
|
||||||
@ -12,7 +12,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(uwu = "a")]
|
LL | #[repr(uwu = "a")]
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
error[E0552]: unrecognized representation hint
|
error[E0552]: unrecognized representation hint
|
||||||
--> $DIR/invalid_repr_list_help.rs:9:8
|
--> $DIR/invalid_repr_list_help.rs:9:8
|
||||||
@ -20,7 +20,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(uwu(4))]
|
LL | #[repr(uwu(4))]
|
||||||
| ^^^^^^
|
| ^^^^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
error[E0552]: unrecognized representation hint
|
error[E0552]: unrecognized representation hint
|
||||||
--> $DIR/invalid_repr_list_help.rs:14:8
|
--> $DIR/invalid_repr_list_help.rs:14:8
|
||||||
@ -28,7 +28,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(uwu, u8)]
|
LL | #[repr(uwu, u8)]
|
||||||
| ^^^
|
| ^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
warning: unknown `doc` attribute `owo`
|
warning: unknown `doc` attribute `owo`
|
||||||
--> $DIR/invalid_repr_list_help.rs:20:7
|
--> $DIR/invalid_repr_list_help.rs:20:7
|
||||||
@ -46,7 +46,7 @@ error[E0552]: unrecognized representation hint
|
|||||||
LL | #[repr(uwu)]
|
LL | #[repr(uwu)]
|
||||||
| ^^^
|
| ^^^
|
||||||
|
|
|
|
||||||
= help: valid reprs are `Rust`, `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
= help: valid reprs are `Rust` (default), `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
|
||||||
|
|
||||||
error: aborting due to 5 previous errors; 1 warning emitted
|
error: aborting due to 5 previous errors; 1 warning emitted
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user