]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/dep-graph-struct-signature.rs
Auto merge of #38310 - frewsxcv:ctlz-cttz, r=pnkfelix
[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     #[rustc_then_this_would_need(CollectItem)] //~ ERROR no path
39     trait Bar {
40         #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
41         #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
42         fn do_something(x: WillChange);
43     }
44
45     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
46     #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
47     fn some_fn(x: WillChange) { }
48
49     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
50     #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
51     fn new_foo(x: u32, y: u32) -> WillChange {
52         WillChange { x: x, y: y }
53     }
54
55     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
56     #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
57     impl WillChange {
58         fn new(x: u32, y: u32) -> WillChange { loop { } }
59     }
60
61     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
62     #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
63     impl WillChange {
64         fn method(&self, x: u32) { }
65     }
66
67     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
68     #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
69     struct WillChanges {
70         x: WillChange,
71         y: WillChange
72     }
73
74     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR OK
75     #[rustc_then_this_would_need(CollectItem)] //~ ERROR OK
76     fn indirect(x: WillChanges) { }
77 }
78
79 mod invalid_signatures {
80     use WontChange;
81
82     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path
83     #[rustc_then_this_would_need(CollectItem)] //~ ERROR no path
84     trait A {
85         fn do_something_else_twice(x: WontChange);
86     }
87
88     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path
89     #[rustc_then_this_would_need(CollectItem)] //~ ERROR no path
90     fn b(x: WontChange) { }
91
92     #[rustc_then_this_would_need(ItemSignature)] //~ ERROR no path from `WillChange`
93     #[rustc_then_this_would_need(CollectItem)] //~ ERROR no path from `WillChange`
94     fn c(x: u32) { }
95 }
96