rust/tests/ui/resolve/primitive-f16-f128-shadowed-mod.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

20 lines
354 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 modules
// See <https://github.com/rust-lang/rust/issues/123282>
mod f16 {
pub fn a16() {}
}
mod f128 {
pub fn a128() {}
}
pub use f128::a128;
pub use f16::a16;