1 error[E0412]: cannot find type `esize` in this scope
2 --> $DIR/levenshtein.rs:15:11
4 15 | fn foo(c: esize) {} // Misspelled primitive type name.
5 | ^^^^^ did you mean `isize`?
7 error[E0412]: cannot find type `Baz` in this scope
8 --> $DIR/levenshtein.rs:19:10
10 19 | type A = Baz; // Misspelled type name.
11 | ^^^ did you mean `Bar`?
13 error[E0412]: cannot find type `Opiton` in this scope
14 --> $DIR/levenshtein.rs:20:10
16 20 | type B = Opiton<u8>; // Misspelled type name from the prelude.
17 | ^^^^^^ did you mean `Option`?
19 error[E0412]: cannot find type `Baz` in this scope
20 --> $DIR/levenshtein.rs:23:14
22 23 | type A = Baz; // No suggestion here, Bar is not visible
23 | ^^^ not found in this scope
25 error[E0425]: cannot find value `MAXITEM` in this scope
26 --> $DIR/levenshtein.rs:30:20
28 30 | let v = [0u32; MAXITEM]; // Misspelled constant name.
29 | ^^^^^^^ did you mean `MAX_ITEM`?
31 error[E0425]: cannot find function `foobar` in this scope
32 --> $DIR/levenshtein.rs:31:5
34 31 | foobar(); // Misspelled function name.
35 | ^^^^^^ did you mean `foo_bar`?
37 error[E0412]: cannot find type `first` in module `m`
38 --> $DIR/levenshtein.rs:32:15
40 32 | let b: m::first = m::second; // Misspelled item in module.
41 | ^^^^^ did you mean `First`?
43 error[E0425]: cannot find value `second` in module `m`
44 --> $DIR/levenshtein.rs:32:26
46 32 | let b: m::first = m::second; // Misspelled item in module.
47 | ^^^^^^ did you mean `Second`?
49 error: aborting due to 8 previous errors