Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
repr
/
invalid-repr-on-structs-74082.rs
blob: 8b9807fad8ce2b8f489bb4eae3288619d050f728 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/74082
#![
allow
(
dead_code
)]
#[
repr
(
i128
)]
//~ ERROR: attribute should be applied to an enum
struct
Foo
;
#[
repr
(
u128
)]
//~ ERROR: attribute should be applied to an enum
struct
Bar
;
fn
main
()
{}