]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/change_private_impl_method_cc/struct_point.rs
Auto merge of #83342 - Count-Count:win-console-incomplete-utf8, r=m-ou-se
[rust.git] / src / test / incremental / change_private_impl_method_cc / struct_point.rs
1 // Test where we change the body of a private method in an impl.
2 // We then test what sort of functions must be rebuilt as a result.
3
4 // revisions:cfail1 cfail2
5 // compile-flags: -Z query-dep-graph
6 // aux-build:point.rs
7 // build-pass (FIXME(62277): could be check-pass?)
8
9 #![crate_type = "rlib"]
10 #![feature(rustc_attrs)]
11 #![feature(stmt_expr_attributes)]
12 #![allow(dead_code)]
13
14 #![rustc_partition_reused(module="struct_point-fn_read_field", cfg="cfail2")]
15 #![rustc_partition_reused(module="struct_point-fn_write_field", cfg="cfail2")]
16 #![rustc_partition_reused(module="struct_point-fn_make_struct", cfg="cfail2")]
17
18 #![rustc_partition_reused(module="struct_point-fn_calls_methods_in_same_impl", cfg="cfail2")]
19 #![rustc_partition_reused(module="struct_point-fn_calls_methods_in_another_impl", cfg="cfail2")]
20
21 extern crate point;
22
23 /// A fn item that calls (public) methods on `Point` from the same impl which changed
24 pub mod fn_calls_methods_in_same_impl {
25     use point::Point;
26
27     #[rustc_clean(cfg="cfail2")]
28     pub fn check() {
29         let x = Point { x: 2.0, y: 2.0 };
30         x.distance_from_origin();
31     }
32 }
33
34 /// A fn item that calls (public) methods on `Point` from another impl
35 pub mod fn_calls_methods_in_another_impl {
36     use point::Point;
37
38     #[rustc_clean(cfg="cfail2")]
39     pub fn dirty() {
40         let mut x = Point { x: 2.0, y: 2.0 };
41         x.translate(3.0, 3.0);
42     }
43 }
44
45 /// A fn item that makes an instance of `Point` but does not invoke methods
46 pub mod fn_make_struct {
47     use point::Point;
48
49     #[rustc_clean(cfg="cfail2")]
50     pub fn make_origin() -> Point {
51         Point { x: 2.0, y: 2.0 }
52     }
53 }
54
55 /// A fn item that reads fields from `Point` but does not invoke methods
56 pub mod fn_read_field {
57     use point::Point;
58
59     #[rustc_clean(cfg="cfail2")]
60     pub fn get_x(p: Point) -> f32 {
61         p.x
62     }
63 }
64
65 /// A fn item that writes to a field of `Point` but does not invoke methods
66 pub mod fn_write_field {
67     use point::Point;
68
69     #[rustc_clean(cfg="cfail2")]
70     pub fn inc_x(p: &mut Point) {
71         p.x += 1.0;
72     }
73 }