2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
--> $DIR/issue-14254.rs:29:9
|
|
|
|
|
|
|
|
|
29 | baz();
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2017-11-20 12:13:27 +00:00
|
|
|
--> $DIR/issue-14254.rs:31:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-11-20 12:13:27 +00:00
|
|
|
31 | a;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:38:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
38 | baz();
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `x` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:40:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
40 | x;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^ help: try: `self.x`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `y` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:42:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
42 | y;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^ help: try: `self.y`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:44:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
44 | a;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:46:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
46 | bah;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `b` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:48:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
48 | b;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:55:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
55 | baz();
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `x` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:57:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
57 | x;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^ help: try: `self.x`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `y` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:59:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
59 | y;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^ help: try: `self.y`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:61:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
61 | a;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:63:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
63 | bah;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `b` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:65:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
65 | b;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:72:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
72 | baz();
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:74:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
74 | bah;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:81:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
81 | baz();
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:83:9
|
2017-11-20 12:13:27 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
83 | bah;
|
2017-11-20 12:13:27 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:90:9
|
2017-11-20 12:13:27 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
90 | baz();
|
2017-11-20 12:13:27 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:92:9
|
2017-11-20 12:13:27 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
92 | bah;
|
2017-11-20 12:13:27 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:99:9
|
|
|
|
|
|
|
|
|
99 | baz();
|
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:101:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
101 | bah;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:108:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
108 | baz();
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/issue-14254.rs:110:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
110 | bah;
|
2017-05-16 13:12:24 +00:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-05-29 16:46:29 +00:00
|
|
|
error[E0601]: main function not found
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to 25 previous errors
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2018-02-19 20:40:25 +00:00
|
|
|
You've got a few errors: E0425, E0601
|
|
|
|
If you want more information on an error, try using "rustc --explain E0425"
|