mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 14:05:49 -04:00

spell-checking. By default, spell-checking is enabled for Clang (obviously) but disabled in CIndex for performance reasons. llvm-svn: 107992
7 lines
162 B
C
7 lines
162 B
C
// RUN: %clang_cc1 -fsyntax-only -fno-spell-checking -verify %s
|
|
typedef struct {
|
|
float x, y;
|
|
} Point;
|
|
|
|
point p1; // expected-error{{unknown type name 'point'}}
|