]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/dep-graph-struct-signature.rs
Rollup merge of #41360 - nikomatsakis:incr-comp-issue-40746-visitors, r=eddyb
[rust.git] / src / test / compile-fail / dep-graph-struct-signature.rs
1 // Copyright 2012-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 // Test cases where a changing struct appears in the signature of fns
12 // and methods.
13
14 // compile-flags: -Z query-dep-graph
15
16 #![feature(rustc_attrs)]
17 #![allow(dead_code)]
18 #![allow(unused_variables)]
19
20 fn main() { }
21
22 #[rustc_if_this_changed]
23 struct WillChange {
24     x: u32,
25     y: u32
26 }
27
28 struct WontChange {
29     x: u32,
30     y: u32
31 }
32
33 // these are valid dependencies
34 mod signatures {
35     use WillChange;
36
37     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path
38     trait Bar {
39         #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
40         fn do_something(x: WillChange);
41     }
42
43     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
44     fn some_fn(x: WillChange) { }
45
46     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
47     fn new_foo(x: u32, y: u32) -> WillChange {
48         WillChange { x: x, y: y }
49     }
50
51     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
52     impl WillChange {
53         fn new(x: u32, y: u32) -> WillChange { loop { } }
54     }
55
56     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
57     impl WillChange {
58         fn method(&self, x: u32) { }
59     }
60
61     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
62     struct WillChanges {
63         x: WillChange,
64         y: WillChange
65     }
66
67     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
68     fn indirect(x: WillChanges) { }
69 }
70
71 mod invalid_signatures {
72     use WontChange;
73
74     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path
75     trait A {
76         fn do_something_else_twice(x: WontChange);
77     }
78
79     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path
80     fn b(x: WontChange) { }
81
82     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path from `WillChange`
83     fn c(x: u32) { }
84 }
85