]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/levenshtein.rs
Auto merge of #46093 - scottmcm:lower-128-mir, r=nagisa
[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 //~^ ERROR cannot find
17
18 enum Bar { }
19
20 type A = Baz; // Misspelled type name.
21 //~^ ERROR cannot find
22 type B = Opiton<u8>; // Misspelled type name from the prelude.
23 //~^ ERROR cannot find
24
25 mod m {
26     type A = Baz; // No suggestion here, Bar is not visible
27     //~^ ERROR cannot find
28
29     pub struct First;
30     pub struct Second;
31 }
32
33 fn main() {
34     let v = [0u32; MAXITEM]; // Misspelled constant name.
35     //~^ ERROR cannot find
36     foobar(); // Misspelled function name.
37     //~^ ERROR cannot find
38     let b: m::first = m::second; // Misspelled item in module.
39     //~^ ERROR cannot find
40     //~| ERROR cannot find
41 }