mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
270 B
Rust
12 lines
270 B
Rust
// Original Levenshtein distance for both of this is 1. We improved accuracy with
|
|
// additional case insensitive comparison.
|
|
|
|
struct TyUint {}
|
|
|
|
struct TyInt {}
|
|
|
|
fn main() {
|
|
TyUInt {};
|
|
//~^ ERROR cannot find struct, variant or union type `TyUInt` in this scope
|
|
}
|