
A call through a function pointer has no associated FunctionDecl, but it still might have a nodiscard return type. Ensure there is a codepath to emit the nodiscard warning in this case. Fixes #142453
33 lines
1.4 KiB
Objective-C
33 lines
1.4 KiB
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
struct [[nodiscard]] expected {};
|
|
|
|
typedef struct expected E;
|
|
|
|
[[nodiscard]] typedef int NI; // expected-warning {{'[[nodiscard]]' attribute ignored when applied to a typedef}}
|
|
typedef __attribute__((warn_unused_result)) int WUR;
|
|
|
|
@interface INTF
|
|
- (int) a [[nodiscard]];
|
|
+ (int) b [[nodiscard]];
|
|
- (struct expected) c;
|
|
+ (struct expected) d;
|
|
- (E) e;
|
|
+ (E) f;
|
|
- (void) g [[nodiscard]]; // expected-warning {{attribute 'nodiscard' cannot be applied to Objective-C method without return value}}
|
|
- (NI) h;
|
|
- (WUR) i;
|
|
@end
|
|
|
|
void foo(INTF *a) {
|
|
[a a]; // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}}
|
|
[INTF b]; // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}}
|
|
[a c]; // expected-warning {{ignoring return value of type 'expected' declared with 'nodiscard' attribute}}
|
|
[INTF d]; // expected-warning {{ignoring return value of type 'expected' declared with 'nodiscard' attribute}}
|
|
[a e]; // expected-warning {{ignoring return value of type 'expected' declared with 'nodiscard' attribute}}
|
|
[INTF f]; // expected-warning {{ignoring return value of type 'expected' declared with 'nodiscard' attribute}}
|
|
[a g]; // no warning because g returns void
|
|
[a h]; // no warning because attribute is ignored when applied to a typedef
|
|
[a i]; // expected-warning {{ignoring return value of type 'WUR' declared with 'warn_unused_result' attribute}}
|
|
}
|