Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
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
()
{}