rust/tests/ui/resolve/primitive-f16-f128-shadowed.rs
Trevor Gross 9a7b176227 Update f16 and f128 tests to run on both 2015 and 2018 editions
Reproduce the bug from <https://github.com/rust-lang/rust/issues/123282>
that indicates this feature gate hits edition-dependent resolution paths.
Resolution changed in edition 2018, so test that as well.
2024-04-03 16:03:22 -04:00

35 lines
597 B
Rust

//@ compile-flags: --crate-type=lib
//@ check-pass
//@ revisions: e2015 e2018
//
//@[e2018] edition:2018
// Verify that gates for the `f16` and `f128` features do not apply to user types
mod binary16 {
#[allow(non_camel_case_types)]
pub struct f16(u16);
}
mod binary128 {
#[allow(non_camel_case_types)]
pub struct f128(u128);
}
pub use binary128::f128;
pub use binary16::f16;
mod private16 {
use crate::f16;
pub trait SealedHalf {}
impl SealedHalf for f16 {}
}
mod private128 {
use crate::f128;
pub trait SealedQuad {}
impl SealedQuad for f128 {}
}