2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
--> $DIR/issue-14254.rs:29:9
|
|
|
|
|
|
|
|
|
29 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:31:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
31 | a;
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^ not found in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:39:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
39 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `x` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:41:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
41 | x;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^ help: try: `self.x`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `y` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:43:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
43 | y;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^ help: try: `self.y`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:45:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
45 | a;
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^ not found in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:48:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
48 | bah;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `b` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:50:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
50 | b;
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^ not found in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:58:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
58 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `x` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:60:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
60 | x;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^ help: try: `self.x`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `y` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:62:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
62 | y;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^ help: try: `self.y`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:64:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
64 | a;
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^ not found in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:67:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
67 | bah;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `b` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:69:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
69 | b;
|
2017-01-12 01:18:08 +03:00
|
|
|
| ^ not found in this scope
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:77:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
77 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:79:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
79 | bah;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:86:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
86 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:88:9
|
|
|
|
|
|
|
|
|
88 | bah;
|
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:95:9
|
|
|
|
|
|
|
|
|
95 | baz();
|
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:97:9
|
|
|
|
|
|
|
|
|
97 | bah;
|
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:104:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
104 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:106:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
106 | bah;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:113:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
113 | baz();
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `self.baz`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-01-12 01:18:08 +03:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2017-11-20 13:13:27 +01:00
|
|
|
--> $DIR/issue-14254.rs:115:9
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
115 | bah;
|
2017-05-16 15:12:24 +02:00
|
|
|
| ^^^ help: try: `Self::bah`
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-05-29 18:46:29 +02:00
|
|
|
error[E0601]: main function not found
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 25 previous errors
|
2016-12-01 01:35:25 +03:00
|
|
|
|