You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
365 B
12 lines
365 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s
|
|
// rdar://12456743
|
|
|
|
typedef signed char BOOL;
|
|
|
|
EXPORT BOOL FUNC(BOOL enabled); // expected-error {{unknown type name 'EXPORT'}} // expected-error {{expected ';' after top level declarator}}
|
|
|
|
static inline BOOL MFIsPrivateVersion(void) {
|
|
return __objc_yes;
|
|
}
|