Fariborz Jahanian | 1c9a2da | 2012-10-16 17:08:11 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
| 2 | // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s |
| 3 | // rdar://12456743 |
| 4 | |
| 5 | typedef signed char BOOL; // expected-note 2 {{candidate found by name lookup is 'BOOL'}} |
| 6 | |
| 7 | EXPORT BOOL FUNC(BOOL enabled); // expected-error {{unknown type name 'EXPORT'}} // expected-error {{expected ';' after top level declarator}} \ |
| 8 | // expected-note 2 {{candidate found by name lookup is 'BOOL'}} |
| 9 | |
| 10 | static inline BOOL MFIsPrivateVersion(void) { // expected-error {{reference to 'BOOL' is ambiguous}} |
| 11 | return __objc_yes; // expected-error {{reference to 'BOOL' is ambiguous}} |
| 12 | } |