]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/krate-inlined.rs
Alias std::cmp::max/min to Ord::max/min
[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.
13
14 // revisions: cfail1
15 // compile-flags: -Z query-dep-graph
16
17 #![allow(warnings)]
18 #![feature(rustc_attrs)]
19
20 #![rustc_if_this_changed(Krate)]
21
22 fn main() { }
23
24 mod x {
25     #[rustc_then_this_would_need(TransCrateItem)] //[cfail1]~ ERROR no path
26     fn method() {
27         // use some methods that require inlining HIR from another crate:
28         let mut v = vec![];
29         v.push(1);
30     }
31 }