From cf2dff2b1e3fa55fa5415d524200070d0d7aacfe Mon Sep 17 00:00:00 2001 From: Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:13:28 +0100 Subject: Move /src/test to /tests --- tests/ui/use-module-level-int-consts.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/ui/use-module-level-int-consts.rs (limited to 'tests/ui/use-module-level-int-consts.rs') diff --git a/tests/ui/use-module-level-int-consts.rs b/tests/ui/use-module-level-int-consts.rs new file mode 100644 index 00000000000..200f742d771 --- /dev/null +++ b/tests/ui/use-module-level-int-consts.rs @@ -0,0 +1,12 @@ +// run-pass + +// Make sure the module level constants are still there and accessible even after +// the corresponding associated constants have been added, and later stabilized. +#![allow(deprecated, deprecated_in_future)] +use std::{u16, f32}; + +fn main() { + let _ = u16::MAX; + let _ = f32::EPSILON; + let _ = std::f64::MANTISSA_DIGITS; +} -- cgit 1.4.1-3-g733a5