1
Fork 0
mirror of https://github.com/Steffo99/micronfig.git synced 2024-11-29 03:14:23 +00:00
micronfig/micronfig_macros/tests/sources/wrong_unqualified_import.rs

11 lines
169 B
Rust
Raw Normal View History

use std::path::PathBuf;
micronfig::config! {
GARASAUTO: String > PathBuf,
}
fn main() {
std::env::set_var("GARASAUTO", "./auto");
println!("{:#?}", GARASAUTO());
}