blob: bb76a0bb8fe868bdc174652c6bfa69f6e1b7e929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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();
}
|