diff options
Diffstat (limited to 'tests/ui/use-module-level-int-consts.rs')
-rw-r--r-- | tests/ui/use-module-level-int-consts.rs | 12 |
1 files changed, 12 insertions, 0 deletions
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 000000000..200f742d7 --- /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; +} |