mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
11 lines
238 B
Rust
11 lines
238 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() {}
|