summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-46332.rs
blob: bed74e3138a665073af32bab4f62fcd4dfb50732 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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
}