summaryrefslogtreecommitdiffstats
path: root/src/test/incremental/inlined_hir_34991/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/incremental/inlined_hir_34991/main.rs')
-rw-r--r--src/test/incremental/inlined_hir_34991/main.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/incremental/inlined_hir_34991/main.rs b/src/test/incremental/inlined_hir_34991/main.rs
deleted file mode 100644
index bb76a0bb8..000000000
--- a/src/test/incremental/inlined_hir_34991/main.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// Regression test for #34991: an ICE occurred here because we inline
-// some of the vector routines and give them a local def-id `X`. This
-// got hashed after codegen (`hir_owner(X)`). When we load back up, we get an
-// error because the `X` is remapped to the original def-id (in
-// libstd), and we can't hash a HIR node from std.
-
-// revisions:rpass1 rpass2
-
-#![feature(rustc_attrs)]
-
-use std::vec::Vec;
-
-pub fn foo() -> Vec<i32> {
- vec![1, 2, 3]
-}
-
-pub fn bar() {
- foo();
-}
-
-pub fn main() {
- bar();
-}