File: three-equals.stderr

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (49 lines) | stat: -rw-r--r-- 1,178 bytes parent folder | download | duplicates (8)
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
49
error: found 2 equal signs, need exactly 3
  --> $DIR/three-equals.rs:12:5
   |
LL |     three_equals!(==);
   |     ^^^^^^^^^^^^^^^^^
   |
   = help: input must be: `===`
   = note: this error originates in the macro `three_equals` (in Nightly builds, run with -Z macro-backtrace for more info)

error: expected EOF, found `=`.
  --> $DIR/three-equals.rs:15:22
   |
LL |     three_equals!(=====);
   |                      ^
   |
note: last good input was here
  --> $DIR/three-equals.rs:15:21
   |
LL |     three_equals!(=====);
   |                     ^
   = help: input must be: `===`

error: expected `=`, found `abc`.
  --> $DIR/three-equals.rs:18:19
   |
LL |     three_equals!(abc);
   |                   ^^^

error: expected `=`, found `!`.
  --> $DIR/three-equals.rs:21:19
   |
LL |     three_equals!(!!);
   |                   ^

error: expected EOF, found `a`.
  --> $DIR/three-equals.rs:24:22
   |
LL |     three_equals!(===a);
   |                      ^
   |
note: last good input was here
  --> $DIR/three-equals.rs:24:21
   |
LL |     three_equals!(===a);
   |                     ^
   = help: input must be: `===`

error: aborting due to 5 previous errors