]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/levenshtein.stderr
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / resolve / levenshtein.stderr
1 error[E0412]: cannot find type `esize` in this scope
2   --> $DIR/levenshtein.rs:5:11
3    |
4 LL | fn foo(c: esize) {} // Misspelled primitive type name.
5    |           ^^^^^ help: a builtin type with a similar name exists: `isize`
6
7 error[E0412]: cannot find type `Baz` in this scope
8   --> $DIR/levenshtein.rs:10:10
9    |
10 LL | enum Bar { }
11    | -------- similarly named enum `Bar` defined here
12 LL | 
13 LL | type A = Baz; // Misspelled type name.
14    |          ^^^ help: an enum with a similar name exists: `Bar`
15
16 error[E0412]: cannot find type `Opiton` in this scope
17   --> $DIR/levenshtein.rs:12:10
18    |
19 LL | type B = Opiton<u8>; // Misspelled type name from the prelude.
20    |          ^^^^^^ help: an enum with a similar name exists: `Option`
21    | 
22   ::: $SRC_DIR/core/src/option.rs:LL:COL
23    |
24 LL | pub enum Option<T> {
25    | ------------------ similarly named enum `Option` defined here
26
27 error[E0412]: cannot find type `Baz` in this scope
28   --> $DIR/levenshtein.rs:16:14
29    |
30 LL |     type A = Baz; // No suggestion here, Bar is not visible
31    |              ^^^ not found in this scope
32
33 error[E0425]: cannot find value `MAXITEM` in this scope
34   --> $DIR/levenshtein.rs:24:20
35    |
36 LL | const MAX_ITEM: usize = 10;
37    | --------------------------- similarly named constant `MAX_ITEM` defined here
38 ...
39 LL |     let v = [0u32; MAXITEM]; // Misspelled constant name.
40    |                    ^^^^^^^ help: a constant with a similar name exists: `MAX_ITEM`
41
42 error[E0425]: cannot find function `foobar` in this scope
43   --> $DIR/levenshtein.rs:26:5
44    |
45 LL | fn foo_bar() {}
46    | ------------ similarly named function `foo_bar` defined here
47 ...
48 LL |     foobar(); // Misspelled function name.
49    |     ^^^^^^ help: a function with a similar name exists: `foo_bar`
50
51 error[E0412]: cannot find type `first` in module `m`
52   --> $DIR/levenshtein.rs:28:15
53    |
54 LL |     pub struct First;
55    |     ----------------- similarly named struct `First` defined here
56 ...
57 LL |     let b: m::first = m::second; // Misspelled item in module.
58    |               ^^^^^ help: a struct with a similar name exists (notice the capitalization): `First`
59
60 error[E0425]: cannot find value `second` in module `m`
61   --> $DIR/levenshtein.rs:28:26
62    |
63 LL |     pub struct Second;
64    |     ------------------ similarly named unit struct `Second` defined here
65 ...
66 LL |     let b: m::first = m::second; // Misspelled item in module.
67    |                          ^^^^^^ help: a unit struct with a similar name exists (notice the capitalization): `Second`
68
69 error: aborting due to 8 previous errors
70
71 Some errors have detailed explanations: E0412, E0425.
72 For more information about an error, try `rustc --explain E0412`.