2017-12-01 00:39:47 +03:00
|
|
|
// Original Levenshtein distance for both of this is 1. We improved accuracy with
|
|
|
|
// additional case insensitive comparison.
|
|
|
|
|
|
|
|
struct TyUint {}
|
|
|
|
|
|
|
|
struct TyInt {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
TyUInt {};
|
2017-12-01 11:38:30 +03:00
|
|
|
//~^ ERROR cannot find struct, variant or union type `TyUInt` in this scope
|
2017-12-01 00:39:47 +03:00
|
|
|
}
|