summaryrefslogtreecommitdiffstats
path: root/tests/ui/extenv/issue-110547.rs
blob: a6fb96ac066494a587f3f553fc801f47b894613a (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
}