2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:issue-73112.rs
|
2020-07-14 16:28:11 +01:00
|
|
|
|
|
|
|
|
extern crate issue_73112;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
use issue_73112::PageTable;
|
|
|
|
|
|
|
|
|
|
#[repr(C, packed)]
|
|
|
|
|
struct SomeStruct {
|
|
|
|
|
//~^ ERROR packed type cannot transitively contain a `#[repr(align)]` type [E0588]
|
|
|
|
|
page_table: PageTable,
|
|
|
|
|
}
|
|
|
|
|
}
|