YouCompleteMe/cpp/llvm/tools/clang/test/PCH/pending-ids.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

34 lines
735 B
Objective-C

// Test for rdar://10278815
// Without PCH
// RUN: %clang_cc1 -fsyntax-only -verify -include %s %s
// With PCH
// RUN: %clang_cc1 %s -emit-pch -o %t
// RUN: %clang_cc1 -emit-llvm-only -verify %s -include-pch %t -g
#ifndef HEADER
#define HEADER
//===----------------------------------------------------------------------===//
// Header
typedef char BOOL;
@interface NSString
+ (BOOL)meth;
@end
static NSString * const cake = @"cake";
//===----------------------------------------------------------------------===//
#else
//===----------------------------------------------------------------------===//
@interface Foo {
BOOL ivar;
}
@end
//===----------------------------------------------------------------------===//
#endif