You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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
+
constMAX_ITEM:usize = 10;
12
+
13
+
fnfoo_bar(){}
14
+
15
+
fnfoo(c:esize){}// Misspelled primitive type name.
16
+
17
+
enumBar{}
18
+
19
+
typeA = Baz;// Misspelled type name.
20
+
typeB = Opiton<u8>;// Misspelled type name from the prelude.
21
+
22
+
mod m {
23
+
typeA = Baz;// No suggestion here, Bar is not visible
24
+
25
+
pubstructFirst;
26
+
pubstructSecond;
27
+
}
28
+
29
+
fnmain(){
30
+
let v = [0u32;MAXITEM];// Misspelled constant name.
31
+
foobar();// Misspelled function name.
32
+
let b: m::first = m::second;// Misspelled item in module.
0 commit comments