summaryrefslogtreecommitdiffstats
path: root/src/test/incremental/mir-opt.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/incremental/mir-opt.rs')
-rw-r--r--src/test/incremental/mir-opt.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/incremental/mir-opt.rs b/src/test/incremental/mir-opt.rs
deleted file mode 100644
index 5bd863439..000000000
--- a/src/test/incremental/mir-opt.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// MIR optimizations can create expansions after the TyCtxt has been created.
-// This test verifies that those expansions can be decoded correctly.
-
-// revisions:rpass1 rpass2
-// compile-flags: -Z query-dep-graph -Z mir-opt-level=3
-
-fn main() {
- if std::env::var("a").is_ok() {
- println!("b");
- }
-}