brintos

brintos / llvm-project-archived public Read only

0
0
Text · 303 B · 857ae54 Raw
8 lines · plain
1// RUN: %clang_cc1 -x objective-c-header -emit-pch -o %t %S/Inputs/typo.h2// RUN: %clang_cc1 -include-pch %t -verify %s3 4void f(void) {5  [NSstring alloc]; // expected-error{{unknown receiver 'NSstring'; did you mean 'NSString'?}}6                    // expected-note@Inputs/typo.h:3{{declared here}}7}8