-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test for invalid places of repr align
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#[repr(align(16))] | ||
//~^ ERROR attribute should be applied to a struct, enum, function, associated function, or union | ||
pub type Foo = i32; | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
error[E0517]: attribute should be applied to a struct, enum, function, associated function, or union | ||
--> $DIR/invalid-repr.rs:1:8 | ||
| | ||
LL | #[repr(align(16))] | ||
| ^^^^^^^^^ | ||
LL | | ||
LL | pub type Foo = i32; | ||
| ------------------- not a struct, enum, function, associated function, or union | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0517`. |