about summary refs log tree commit diff
path: root/tests/run-make/core-no-fp-fmt-parse/rmake.rs
blob: a790ada40db85b7ee3e1021940125be6ef1736c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This test checks that the core library of Rust can be compiled without enabling
// support for formatting and parsing floating-point numbers.

use run_make_support::{rustc, source_root};

fn main() {
    rustc()
        .edition("2024")
        .arg("-Dwarnings")
        .crate_type("rlib")
        .input(source_root().join("library/core/src/lib.rs"))
        .cfg("no_fp_fmt_parse")
        .run();
}