blob: e38343348dd94e466f0b1130392a8f50039339b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
error: found 2 equal signs, need exactly 3
--> $DIR/three-equals.rs:15:5
|
LL | three_equals!(==); //~ ERROR found 2 equal signs, need exactly 3
| ^^^^^^^^^^^^^^^^^^
|
= help: input must be: `===`
error: expected EOF, found `=`.
--> $DIR/three-equals.rs:18:21
|
LL | three_equals!(=====); //~ ERROR expected EOF
| ^^
|
note: last good input was here
--> $DIR/three-equals.rs:18:21
|
LL | three_equals!(=====); //~ ERROR expected EOF
| ^^
= help: input must be: `===`
error: expected `=`, found `abc`.
--> $DIR/three-equals.rs:21:19
|
LL | three_equals!(abc); //~ ERROR expected `=`
| ^^^
error: expected `=`, found `!`.
--> $DIR/three-equals.rs:24:19
|
LL | three_equals!(!!); //~ ERROR expected `=`
| ^
error: expected EOF, found `a`.
--> $DIR/three-equals.rs:27:22
|
LL | three_equals!(===a); //~ ERROR expected EOF
| ^
|
note: last good input was here
--> $DIR/three-equals.rs:27:21
|
LL | three_equals!(===a); //~ ERROR expected EOF
| ^
= help: input must be: `===`
error: aborting due to 5 previous errors
|