2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `shave`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:27:5
|
|
|
|
|
|
|
|
|
27 | shave();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `clone`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:35:5
|
|
|
|
|
|
|
|
|
35 | clone();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^ did you mean `self.clone(...)`?
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `default`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:43:5
|
|
|
|
|
|
|
|
|
43 | default();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^ did you mean `Self::default`?
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved value `whiskers`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:52:5
|
|
|
|
|
|
|
|
|
52 | whiskers -= other;
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
| |
|
|
|
|
| did you mean `self.whiskers`?
|
|
|
|
| `self` value is only available in methods with `self` parameter
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `shave`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:57:5
|
|
|
|
|
|
|
|
|
57 | shave(4);
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^ did you mean `Self::shave`?
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `purr`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:60:5
|
|
|
|
|
|
|
|
|
60 | purr();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `static_method`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:70:9
|
|
|
|
|
|
|
|
|
70 | static_method();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^^^^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `purr`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:73:9
|
|
|
|
|
|
|
|
|
73 | purr();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `purr`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:76:9
|
|
|
|
|
|
|
|
|
76 | purr();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `purr`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:79:9
|
|
|
|
|
|
|
|
|
79 | purr();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0424]: expected value, found module `self`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:87:8
|
|
|
|
|
|
|
|
|
87 | if self.whiskers > 3 {
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^ `self` value is only available in methods with `self` parameter
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `grow_older`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:95:5
|
|
|
|
|
|
|
|
|
95 | grow_older();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `shave`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:98:5
|
|
|
|
|
|
|
|
|
98 | shave();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved value `whiskers`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:104:5
|
|
|
|
|
|
|
|
|
104 | whiskers = 0;
|
|
|
|
| ^^^^^^^^ did you mean `self.whiskers`?
|
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved value `whiskers`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:110:5
|
|
|
|
|
|
|
|
|
110 | whiskers = 4;
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
| |
|
|
|
|
| did you mean `self.whiskers`?
|
|
|
|
| `self` value is only available in methods with `self` parameter
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0425]: unresolved function `purr_louder`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:115:5
|
|
|
|
|
|
|
|
|
115 | purr_louder();
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^^^^^ no resolution found
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0424]: expected value, found module `self`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $DIR/issue-2356.rs:122:5
|
|
|
|
|
|
|
|
|
122 | self += 1;
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^ `self` value is only available in methods with `self` parameter
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
|
|
error: aborting due to 17 previous errors
|
|
|
|
|