blob: 5c9d2a616b3f02f2e00ae2b8459ef53b2493dbf4 [file] [log] [blame]
//! Make sure the module level constants are still there and accessible even after
//! the corresponding associated constants have been added, and later stabilized.
//@ run-pass
#![allow(deprecated, deprecated_in_future)]
use std::{f32, u16};
fn main() {
let _ = u16::MAX;
let _ = f32::EPSILON;
let _ = std::f64::MANTISSA_DIGITS;
}