]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/krate-inlined.rs
Auto merge of #54497 - ralexstokes:stabilize_pattern_parentheses, r=nikomatsakis
[rust.git] / src / test / incremental / krate-inlined.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Regr. test that using HIR inlined from another krate does *not* add
12 // a dependency from the local Krate node. We can't easily test that
13 // directly anymore, so now we test that we get reuse.
14
15 // revisions: rpass1 rpass2
16 // compile-flags: -Z query-dep-graph
17
18 #![allow(warnings)]
19 #![feature(rustc_attrs)]
20 #![rustc_partition_reused(module="krate_inlined-x", cfg="rpass2")]
21
22 fn main() {
23     x::method();
24
25     #[cfg(rpass2)]
26     ()
27 }
28
29 mod x {
30     pub fn method() {
31         // use some methods that require inlining HIR from another crate:
32         let mut v = vec![];
33         v.push(1);
34     }
35 }