mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
343 B
Rust
13 lines
343 B
Rust
// 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;
|
|
}
|