mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
11 lines
240 B
Rust
11 lines
240 B
Rust
//@ 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() {}
|