summaryrefslogtreecommitdiffstats
path: root/test/PCH/typo.m
blob: c6f0275bc2fdc3ade6e01e833a9d0b5818be6bf0 (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -x objective-c-header -emit-pch -o %t %S/Inputs/typo.h
// RUN: %clang_cc1 -include-pch %t -verify %s
// In header: expected-note{{declared here}}
void f() {
  [NSstring alloc]; // expected-error{{unknown receiver 'NSstring'; did you mean 'NSString'?}}
}