blob: 2acfb2e671eb37b356110bbab38428c732c268f0 (
plain)
1
2
3
4
5
6
7
|
//@ compile-flags: -C debug-assertions
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
}
|