Sign in
rust
/
rust
/
5107af264dfd043161d80a42beccdf5f8d9b3113
/
.
/
tests
/
ui
/
repr
/
repr-empty-packed.rs
blob: 6e390a12b15acc31d076eb01507ad6984ca97368 [
file
]
//@ compile-flags: --crate-type=lib
#![
deny
(
unused_attributes
)]
#[
repr
()]
//~ ERROR unused attribute
#[
repr
(
packed
)]
//~ ERROR attribute should be applied to a struct or union
pub
enum
Foo
{
Bar
,
Baz
(
i32
),
}