Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
repr
/
repr.rs
blob: 564d6732601024661009d2de0e6eea59ddebef02 [
file
] [
log
] [
blame
] [
edit
]
#[
repr
]
//~ ERROR malformed `repr` attribute
struct
_A
{}
#[
repr
=
"B"
]
//~ ERROR malformed `repr` attribute
struct
_B
{}
#[
repr
=
"C"
]
//~ ERROR malformed `repr` attribute
struct
_C
{}
#[
repr
(
C
)]
struct
_D
{}
fn
main
()
{}