llvm-project/clang/test/SemaObjC/class-unavail-warning.m
Aaron Ballman 0f1c1be196 [clang] Remove rdar links; NFC
We have a new policy in place making links to private resources
something we try to avoid in source and test files. Normally, we'd
organically switch to the new policy rather than make a sweeping change
across a project. However, Clang is in a somewhat special circumstance
currently: recently, I've had several new contributors run into rdar
links around test code which their patch was changing the behavior of.
This turns out to be a surprisingly bad experience, especially for
newer folks, for a handful of reasons: not understanding what the link
is and feeling intimidated by it, wondering whether their changes are
actually breaking something important to a downstream in some way,
having to hunt down strangers not involved with the patch to impose on
them for help, accidental pressure from asking for potentially private
IP to be made public, etc. Because folks run into these links entirely
by chance (through fixing bugs or working on new features), there's not
really a set of problematic links to focus on -- all of the links have
basically the same potential for causing these problems. As a result,
this is an omnibus patch to remove all such links.

This was not a mechanical change; it was done by manually searching for
rdar, radar, radr, and other variants to find all the various
problematic links. From there, I tried to retain or reword the
surrounding comments so that we would lose as little context as
possible. However, because most links were just a plain link with no
supporting context, the majority of the changes are simple removals.

Differential Review: https://reviews.llvm.org/D158071
2023-08-28 12:13:42 -04:00

122 lines
2.8 KiB
Objective-C

// RUN: %clang_cc1 -fsyntax-only -fblocks -triple x86_64-apple-darwin10 -verify %s
__attribute__((unavailable("not available")))
@interface MyClass { // expected-note 7 {{'MyClass' has been explicitly marked unavailable here}}
@public
void *_test;
MyClass *ivar; // no error.
}
- (id)self;
- new;
+ (void)addObject:(id)anObject;
- (MyClass *)meth; // no error.
@end
@interface Gorf {
MyClass *ivar; // expected-error {{unavailable}}
}
- (MyClass *)meth; // expected-error {{unavailable}}
@end
@interface MyClass (Cat1)
- (MyClass *)meth; // no error.
@end
@interface MyClass (Cat2) // no error.
@end
@implementation MyClass (Cat2) // no error.
@end
int main(void) {
[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;
}
@interface NSObject @end
__attribute__((visibility("default"))) __attribute__((availability(macosx,unavailable)))
@interface Foo : NSObject @end // expected-note 3 {{'Foo' has been explicitly marked unavailable here}}
@interface AppDelegate : NSObject
@end
@class Foo;
@implementation AppDelegate
- (void) applicationDidFinishLaunching
{
Foo *foo = 0; // expected-error {{'Foo' is unavailable}}
}
@end
@class Foo;
Foo *g_foo = 0; // expected-error {{'Foo' is unavailable}}
@class Foo;
@class Foo;
@class Foo;
Foo * f_func(void) { // expected-error {{'Foo' is unavailable}}
return 0;
}
#define UNAVAILABLE __attribute__((unavailable("not available")))
UNAVAILABLE
@interface Base // expected-note {{unavailable here}}
@end
UNAVAILABLE
@protocol SomeProto // expected-note 4 {{unavailable here}}
@end
@interface Sub : Base<SomeProto> // expected-error 2 {{unavailable}}
@end
@interface IP<SomeProto> // expected-error {{unavailable}}
@end
@protocol SubProt<SomeProto> // expected-error {{unavailable}}
@end
@interface Sub(cat)<SomeProto> // expected-error {{unavailable}}
@end
UNAVAILABLE
@interface UnavailSub : Base<SomeProto> // no error
@end
UNAVAILABLE
@interface UnavailIP<SomeProto> // no error
@end
UNAVAILABLE
@protocol UnavailProt<SomeProto> // no error
@end
@interface UnavailSub(cat)<SomeProto> // no error
@end
int unavail_global UNAVAILABLE;
UNAVAILABLE __attribute__((objc_root_class))
@interface TestAttrContext
-meth;
@end
@implementation TestAttrContext
-meth {
unavail_global = 2; // no warn
(void) ^{
unavail_global = 4; // no warn
};
}
@end
typedef int unavailable_int UNAVAILABLE; // expected-note {{'unavailable_int' has been explicitly marked unavailable here}}
UNAVAILABLE
@interface A
extern unavailable_int global_unavailable; // expected-error {{'unavailable_int' is unavailable: not available}}
@end