2017-11-30 15:39:47 -06: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 02:38:30 -06:00
|
|
|
//~^ ERROR cannot find struct, variant or union type `TyUInt` in this scope
|
2017-11-30 15:39:47 -06:00
|
|
|
}
|