no-typo.c revision b615eefeb4419b77f5ce726813aaa3a5cf352536
1// RUN: %clang_cc1 -fsyntax-only -fno-spell-checking -verify %s
2typedef struct {
3  float x, y;
4} Point;
5
6point p1; // expected-error{{unknown type name 'point'}}
7