Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
repr
/
repr-transparent-other-items.rs
blob: e537e3e1a63656f11f5dd04ab6204f3ae913778e [
file
] [
log
] [
blame
] [
edit
]
// See also repr-transparent.rs
#[
repr
(
transparent
)]
//~ ERROR should be applied to a struct
fn
cant_repr_this
()
{}
#[
repr
(
transparent
)]
//~ ERROR should be applied to a struct
static
CANT_REPR_THIS
:
u32
=
0
;
fn
main
()
{}