rust/tests/ui/repr/repr-transparent-non-exhaustive.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
3.5 KiB
Rust
Raw Normal View History

#![deny(repr_transparent_external_private_fields)]
// aux-build: repr-transparent-non-exhaustive.rs
extern crate repr_transparent_non_exhaustive;
2022-07-10 13:31:58 +00:00
use repr_transparent_non_exhaustive::{
Private,
NonExhaustive,
NonExhaustiveEnum,
NonExhaustiveVariant,
ExternalIndirection,
};
pub struct InternalPrivate {
_priv: (),
}
#[non_exhaustive]
pub struct InternalNonExhaustive;
pub struct InternalIndirection<T> {
x: T,
}
pub type Sized = i32;
#[repr(transparent)]
pub struct T1(Sized, InternalPrivate);
#[repr(transparent)]
pub struct T2(Sized, InternalNonExhaustive);
#[repr(transparent)]
pub struct T3(Sized, InternalIndirection<(InternalPrivate, InternalNonExhaustive)>);
#[repr(transparent)]
pub struct T4(Sized, ExternalIndirection<(InternalPrivate, InternalNonExhaustive)>);
#[repr(transparent)]
pub struct T5(Sized, Private);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T6(Sized, NonExhaustive);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
2022-07-10 13:31:58 +00:00
pub struct T7(Sized, NonExhaustiveEnum);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
2022-07-10 13:31:58 +00:00
pub struct T8(Sized, NonExhaustiveVariant);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
2022-07-10 13:31:58 +00:00
pub struct T9(Sized, InternalIndirection<Private>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
2022-07-10 13:31:58 +00:00
pub struct T10(Sized, InternalIndirection<NonExhaustive>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
2022-07-10 13:31:58 +00:00
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T11(Sized, InternalIndirection<NonExhaustiveEnum>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
2022-07-10 13:31:58 +00:00
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T12(Sized, InternalIndirection<NonExhaustiveVariant>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
2022-07-10 13:31:58 +00:00
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T13(Sized, ExternalIndirection<Private>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
2022-07-10 13:31:58 +00:00
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T14(Sized, ExternalIndirection<NonExhaustive>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
2022-07-10 13:31:58 +00:00
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T15(Sized, ExternalIndirection<NonExhaustiveEnum>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
2022-07-10 13:31:58 +00:00
//~| WARN this was previously accepted by the compiler
#[repr(transparent)]
pub struct T16(Sized, ExternalIndirection<NonExhaustiveVariant>);
2022-09-18 15:55:36 +00:00
//~^ ERROR zero-sized fields in `repr(transparent)` cannot contain external non-exhaustive types
//~| WARN this was previously accepted by the compiler
fn main() {}