Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-73112.rs
blob: cc7be9c95aef6be2dc3012562bd7d2264f5e4854 [
file
] [
log
] [
blame
]
// aux-build:issue-73112.rs
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
,
}
}