2024-02-16 14:02:50 -06:00
|
|
|
//@ compile-flags: -C debug-assertions
|
2023-04-20 00:24:45 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
env!{"\t"}; //~ ERROR not defined at compile time
|
|
|
|
env!("\t"); //~ ERROR not defined at compile time
|
|
|
|
env!("\u{2069}"); //~ ERROR not defined at compile time
|
|
|
|
}
|