summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/c2x-nodiscard.c
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2017-10-17 20:33:35 +0000
committerAaron Ballman <aaron@aaronballman.com>2017-10-17 20:33:35 +0000
commit35713eba567eb38c99a3fd85ac89747d1524c62c (patch)
treea57bb7914e30091d4940ed7fff29dad879c94d39 /clang/test/Sema/c2x-nodiscard.c
parent96d9b7f5e1c5a437879b5192743c96649699a02f (diff)
downloadbcm5719-llvm-35713eba567eb38c99a3fd85ac89747d1524c62c.tar.gz
bcm5719-llvm-35713eba567eb38c99a3fd85ac89747d1524c62c.zip
Enable support for the [[nodiscard]] attribute from WG14 N2050 when enabling double square bracket attributes in C code.
llvm-svn: 316026
Diffstat (limited to 'clang/test/Sema/c2x-nodiscard.c')
-rw-r--r--clang/test/Sema/c2x-nodiscard.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/clang/test/Sema/c2x-nodiscard.c b/clang/test/Sema/c2x-nodiscard.c
new file mode 100644
index 00000000000..f128d3bb572
--- /dev/null
+++ b/clang/test/Sema/c2x-nodiscard.c
@@ -0,0 +1,49 @@
+// RUN: %clang_cc1 -fsyntax-only -fdouble-square-bracket-attributes -verify %s
+
+struct [[nodiscard]] S1 { // ok
+ int i;
+};
+struct [[nodiscard nodiscard]] S2 { // expected-error {{attribute 'nodiscard' cannot appear multiple times in an attribute specifier}}
+ int i;
+};
+struct [[nodiscard("Wrong")]] S3 { // expected-error {{'nodiscard' cannot have an argument list}}
+ int i;
+};
+
+[[nodiscard]] int f1(void);
+enum [[nodiscard]] E1 { One };
+
+[[nodiscard]] int i; // expected-warning {{'nodiscard' attribute only applies to functions, methods, enums, and classes}}
+
+struct [[nodiscard]] S4 {
+ int i;
+};
+struct S4 get_s(void);
+
+enum [[nodiscard]] E2 { Two };
+enum E2 get_e(void);
+
+[[nodiscard]] int get_i();
+
+void f2(void) {
+ get_s(); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}}
+ get_i(); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}}
+ get_e(); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}}
+
+ // Okay, warnings are not encouraged
+ (void)get_s();
+ (void)get_i();
+ (void)get_e();
+}
+
+struct [[nodiscard]] error_info{
+ int i;
+};
+
+struct error_info enable_missile_safety_mode(void);
+void launch_missiles(void);
+void test_missiles(void) {
+ enable_missile_safety_mode(); // expected-warning {{ignoring return value of function declared with 'nodiscard'}}
+ launch_missiles();
+}
+
OpenPOWER on IntegriCloud