summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/builtin-env-issue-114010.rs
blob: 819b8b1e8abe07f28f910da3f8869d62e40c0d83 (plain)
1
2
3
4
5
6
7
8
9
10
// unset-rustc-env:oopsie
// unset-rustc-env:a""a

env![r#"oopsie"#];
//~^ ERROR environment variable `oopsie` not defined at compile time

env![r#"a""a"#];
//~^ ERROR environment variable `a""a` not defined at compile time

fn main() {}