Mercurial > hg > CbC > CbC_llvm
annotate clang/test/PCH/typo.m @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | c4bab56944e8 |
rev | line source |
---|---|
150 | 1 // 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 | |
4 void f() { | |
5 [NSstring alloc]; // expected-error{{unknown receiver 'NSstring'; did you mean 'NSString'?}} | |
6 // expected-note@Inputs/typo.h:3{{declared here}} | |
7 } |