]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/krate-inherent.rs
Auto merge of #54497 - ralexstokes:stabilize_pattern_parentheses, r=nikomatsakis
[rust.git] / src / test / incremental / krate-inherent.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 // revisions: cfail1 cfail2
12 // compile-flags: -Z query-dep-graph
13 // compile-pass
14
15 #![allow(warnings)]
16 #![feature(rustc_attrs)]
17 #![rustc_partition_reused(module="krate_inherent-x", cfg="cfail2")]
18 #![crate_type = "rlib"]
19
20 pub mod x {
21     pub struct Foo;
22     impl Foo {
23         pub fn foo(&self) { }
24     }
25
26     pub fn method() {
27         let x: Foo = Foo;
28         x.foo(); // inherent methods used to add an edge from Krate
29     }
30 }
31
32 #[cfg(cfail1)]
33 pub fn bar() { } // remove this unrelated fn in cfail2, which should not affect `x::method`
34