mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
8ed0c0b99d
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'}}
|