xref: /minix3/external/bsd/llvm/dist/clang/test/FixIt/no-typo.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -fsyntax-only -fno-spell-checking -verify %s
2 typedef struct {
3   float x, y;
4 } Point;
5 
6 point p1; // expected-error{{unknown type name 'point'}}
7