]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/levenshtein.rs
Auto merge of #38981 - sdleffler:patch-1, r=alexcrichton
[rust.git] / src / test / ui / resolve / levenshtein.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 const MAX_ITEM: usize = 10;
12
13 fn foo_bar() {}
14
15 fn foo(c: esize) {} // Misspelled primitive type name.
16
17 enum Bar { }
18
19 type A = Baz; // Misspelled type name.
20 type B = Opiton<u8>; // Misspelled type name from the prelude.
21
22 mod m {
23     type A = Baz; // No suggestion here, Bar is not visible
24
25     pub struct First;
26     pub struct Second;
27 }
28
29 fn main() {
30     let v = [0u32; MAXITEM]; // Misspelled constant name.
31     foobar(); // Misspelled function name.
32     let b: m::first = m::second; // Misspelled item in module.
33 }