PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / spellcheck-transposition.c
blobb787c83a4e2dacc7fad839b347a7048d08a392ec
1 /* PR other/69968. */
3 struct {
4 int coordx, coordy, coordz;
5 int coordx1, coordy1, coordz1;
6 } c;
8 /* Consider the misspelling "coorzd1".
10 With Levenshtein distance, the misspelling has an edit distance of 2
11 to all 6 of the fields (e.g. via a deletion and a substitution for the
12 first three, and via deletion and insertion for the second three).
14 With Damerau-Levenshtein, the misspelling has an edit distance of 1
15 via transposition to "coordz1", and 2 to the other fields. */
17 void foo (void)
19 c.coorzd1 = c.coordy; /* { dg-error "has no member named 'coorzd1'; did you mean 'coordz1'" } */