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