
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
55 lines
3.1 KiB
Plaintext
55 lines
3.1 KiB
Plaintext
// RUN: %clang_cc1 -fsyntax-only -fobjc-arc -verify -fblocks -triple x86_64-apple-darwin10.0.0 %s
|
|
|
|
typedef void (^blk)(id, __attribute((ns_consumed)) id);
|
|
typedef void (^blk1)(__attribute((ns_consumed))id, __attribute((ns_consumed)) id);
|
|
blk a = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
|
|
|
|
blk b = ^void (id, __attribute((ns_consumed)) id){};
|
|
|
|
blk c = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
|
|
|
|
blk d = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
|
|
|
|
blk1 a1 = ^void (__attribute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
|
|
|
|
blk1 b2 = ^void (id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
|
|
|
|
blk1 c3 = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){};
|
|
|
|
blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
|
|
|
|
|
|
typedef void (*releaser_t)(__attribute__((ns_consumed)) id);
|
|
|
|
void normalFunction(id);
|
|
releaser_t r1 = normalFunction; // expected-error {{cannot initialize a variable of type 'releaser_t'}}
|
|
|
|
void releaser(__attribute__((ns_consumed)) id);
|
|
releaser_t r2 = releaser; // no-warning
|
|
|
|
template <typename T>
|
|
void templateFunction(T) { } // expected-note {{candidate template ignored: could not match 'void (__strong id)' against 'void (__attribute__((ns_consumed)) id)'}} \
|
|
// expected-note {{candidate template ignored: could not match 'void (AntiRelease *__strong)' against 'void (__attribute__((ns_consumed)) AntiRelease *__strong)'}}
|
|
releaser_t r3 = templateFunction<id>; // expected-error {{address of overloaded function 'templateFunction' does not match required type 'void (__attribute__((ns_consumed)) id)'}}
|
|
|
|
template <typename T>
|
|
void templateReleaser(__attribute__((ns_consumed)) T) { }
|
|
// expected-note@-1 {{candidate template ignored: could not match 'void (__attribute__((ns_consumed)) AntiRelease *__strong)' against 'void (AntiRelease *__strong)'}}
|
|
// expected-note@-2 {{candidate template ignored: could not match 'void (__attribute__((ns_consumed)) ExplicitAntiRelease *__strong)' against 'void (ExplicitAntiRelease *__strong)'}}
|
|
releaser_t r4 = templateReleaser<id>; // no-warning
|
|
|
|
|
|
@class AntiRelease, ExplicitAntiRelease, ProRelease;
|
|
|
|
template<>
|
|
void templateFunction(__attribute__((ns_consumed)) AntiRelease *); // expected-error {{no function template matches function template specialization 'templateFunction'}}
|
|
|
|
template<>
|
|
void templateReleaser(AntiRelease *); // expected-error {{no function template matches function template specialization 'templateReleaser'}}
|
|
|
|
template<>
|
|
void templateReleaser(ExplicitAntiRelease *) {} // expected-error {{no function template matches function template specialization 'templateReleaser'}}
|
|
|
|
template<>
|
|
void templateReleaser(__attribute__((ns_consumed)) ProRelease *); // no-warning
|