llvm-project/clang/test/SemaObjC/warn-explicit-call-initialize.m
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

25 lines
856 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -triple x86_64-apple-darwin10 -verify %s
@interface NSObject
+ (void)initialize; // expected-note 2 {{method 'initialize' declared here}}
@end
@interface I : NSObject
+ (void)initialize; // expected-note {{method 'initialize' declared here}}
+ (void)SomeRandomMethod;
@end
@implementation I
- (void) Meth {
[I initialize]; // expected-warning {{explicit call to +initialize results in duplicate call to +initialize}}
[NSObject initialize]; // expected-warning {{explicit call to +initialize results in duplicate call to +initialize}}
}
+ (void)initialize {
[super initialize];
}
+ (void)SomeRandomMethod { // expected-note {{method 'SomeRandomMethod' declared here}}
[super initialize]; // expected-warning {{explicit call to [super initialize] should only be in implementation of +initialize}}
}
@end