mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
31168b077c
Language-design credit goes to a lot of people, but I particularly want to single out Blaine Garst and Patrick Beard for their contributions. Compiler implementation credit goes to Argyrios, Doug, Fariborz, and myself, in no particular order. llvm-svn: 133103
25 lines
672 B
Objective-C
25 lines
672 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar://9092208
|
|
|
|
__attribute__((unavailable("not available")))
|
|
@interface MyClass { // expected-note 5 {{declaration has been explicitly marked unavailable here}}
|
|
@public
|
|
void *_test;
|
|
}
|
|
|
|
- (id)self;
|
|
- new;
|
|
+ (void)addObject:(id)anObject;
|
|
|
|
@end
|
|
|
|
int main() {
|
|
[MyClass new]; // expected-error {{'MyClass' is unavailable: not available}}
|
|
[MyClass self]; // expected-error {{'MyClass' is unavailable: not available}}
|
|
[MyClass addObject:((void *)0)]; // expected-error {{'MyClass' is unavailable: not available}}
|
|
|
|
MyClass *foo = [MyClass new]; // expected-error 2 {{'MyClass' is unavailable: not available}}
|
|
|
|
return 0;
|
|
}
|