rust/src/test/ui/resolve/issue-2356.stderr

113 lines
3.0 KiB
Plaintext
Raw Normal View History

error[E0425]: cannot find function `shave` in this scope
--> $DIR/issue-2356.rs:27:5
|
2018-02-22 18:42:32 -06:00
LL | shave();
| ^^^^^ not found in this scope
error[E0425]: cannot find function `clone` in this scope
--> $DIR/issue-2356.rs:34:5
|
2018-02-22 18:42:32 -06:00
LL | clone();
2017-05-16 08:12:24 -05:00
| ^^^^^ help: try: `self.clone`
error[E0425]: cannot find function `default` in this scope
--> $DIR/issue-2356.rs:41:5
|
2018-02-22 18:42:32 -06:00
LL | default();
2017-05-16 08:12:24 -05:00
| ^^^^^^^ help: try: `Self::default`
error[E0425]: cannot find value `whiskers` in this scope
--> $DIR/issue-2356.rs:49:5
|
2018-02-22 18:42:32 -06:00
LL | whiskers -= other;
| ^^^^^^^^
| |
| `self` value is only available in methods with `self` parameter
2017-07-05 11:58:22 -05:00
| help: try: `self.whiskers`
error[E0425]: cannot find function `shave` in this scope
--> $DIR/issue-2356.rs:51:5
|
2018-02-22 18:42:32 -06:00
LL | shave(4);
2017-05-16 08:12:24 -05:00
| ^^^^^ help: try: `Self::shave`
error[E0425]: cannot find function `purr` in this scope
--> $DIR/issue-2356.rs:53:5
|
2018-02-22 18:42:32 -06:00
LL | purr();
| ^^^^ not found in this scope
error[E0425]: cannot find function `static_method` in this scope
--> $DIR/issue-2356.rs:62:9
|
2018-02-22 18:42:32 -06:00
LL | static_method();
| ^^^^^^^^^^^^^ not found in this scope
error[E0425]: cannot find function `purr` in this scope
--> $DIR/issue-2356.rs:64:9
|
2018-02-22 18:42:32 -06:00
LL | purr();
| ^^^^ not found in this scope
error[E0425]: cannot find function `purr` in this scope
--> $DIR/issue-2356.rs:66:9
|
2018-02-22 18:42:32 -06:00
LL | purr();
| ^^^^ not found in this scope
error[E0425]: cannot find function `purr` in this scope
--> $DIR/issue-2356.rs:68:9
|
2018-02-22 18:42:32 -06:00
LL | purr();
| ^^^^ not found in this scope
error[E0424]: expected value, found module `self`
--> $DIR/issue-2356.rs:75:8
|
2018-02-22 18:42:32 -06:00
LL | if self.whiskers > 3 {
| ^^^^ `self` value is only available in methods with `self` parameter
error[E0425]: cannot find function `grow_older` in this scope
--> $DIR/issue-2356.rs:82:5
|
2018-02-22 18:42:32 -06:00
LL | grow_older();
| ^^^^^^^^^^ not found in this scope
error[E0425]: cannot find function `shave` in this scope
--> $DIR/issue-2356.rs:84:5
|
2018-02-22 18:42:32 -06:00
LL | shave();
| ^^^^^ not found in this scope
error[E0425]: cannot find value `whiskers` in this scope
--> $DIR/issue-2356.rs:89:5
2017-11-20 06:13:27 -06:00
|
2018-02-22 18:42:32 -06:00
LL | whiskers = 0;
2017-11-20 06:13:27 -06:00
| ^^^^^^^^ help: try: `self.whiskers`
error[E0425]: cannot find value `whiskers` in this scope
--> $DIR/issue-2356.rs:94:5
|
2018-02-22 18:42:32 -06:00
LL | whiskers = 4;
| ^^^^^^^^
| |
| `self` value is only available in methods with `self` parameter
| help: try: `self.whiskers`
error[E0425]: cannot find function `purr_louder` in this scope
--> $DIR/issue-2356.rs:96:5
|
2018-02-22 18:42:32 -06:00
LL | purr_louder();
| ^^^^^^^^^^^ not found in this scope
error[E0424]: expected value, found module `self`
2018-02-22 18:42:32 -06:00
--> $DIR/issue-2356.rs:102:5
|
LL | self += 1;
| ^^^^ `self` value is only available in methods with `self` parameter
error: aborting due to 17 previous errors
2018-02-19 14:40:25 -06:00
You've got a few errors: E0424, E0425
If you want more information on an error, try using "rustc --explain E0424"