blob: c6f0275bc2fdc3ade6e01e833a9d0b5818be6bf0 [file] [log] [blame]
Douglas Gregor95f42922010-10-14 22:11:03 +00001// RUN: %clang_cc1 -x objective-c-header -emit-pch -o %t %S/Inputs/typo.h
2// RUN: %clang_cc1 -include-pch %t -verify %s
3// In header: expected-note{{declared here}}
4void f() {
5 [NSstring alloc]; // expected-error{{unknown receiver 'NSstring'; did you mean 'NSString'?}}
6}