aboutsummaryrefslogtreecommitdiff
path: root/crate_universe/test_data/test_data_passing_crate/src/lib.rs
blob: f2a5f817c528a084e96ec1e71f202814e321c2fe (plain)
1
2
3
4
5
6
7
pub(crate) const fn get_opt_level() -> &'static str {
    env!("BUILD_SCRIPT_OPT_LEVEL")
}

pub(crate) const fn get_out_dir() -> &'static str {
    env!("BUILD_SCRIPT_OUT_DIR")
}