Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
repr
/
repr-transparent-other-items.rs
blob: e537e3e1a63656f11f5dd04ab6204f3ae913778e [
file
] [
log
] [
blame
]
// 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
()
{}