1error: #[repr(packed)] attribute should not be name-value pair 2 --> tests/ui/pin_project/packed-name-value.rs:16:8 3 | 416 | #[repr(packed = "")] //~ ERROR attribute should not be name-value pair 5 | ^^^^^^^^^^^ 6 7error: #[repr(packed)] attribute should not be name-value pair 8 --> tests/ui/pin_project/packed-name-value.rs:21:8 9 | 1021 | #[repr(packed = "")] //~ ERROR attribute should not be name-value pair 11 | ^^^^^^^^^^^ 12 13error[E0693]: incorrect `repr(packed)` attribute format 14 --> tests/ui/pin_project/packed-name-value.rs:16:8 15 | 1616 | #[repr(packed = "")] //~ ERROR attribute should not be name-value pair 17 | ^^^^^^^^^^^ help: use parentheses instead: `packed()` 18 19error[E0693]: incorrect `repr(packed)` attribute format 20 --> tests/ui/pin_project/packed-name-value.rs:21:8 21 | 2221 | #[repr(packed = "")] //~ ERROR attribute should not be name-value pair 23 | ^^^^^^^^^^^ help: use parentheses instead: `packed()` 24