summaryrefslogtreecommitdiffstats
path: root/test/Sema/return.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/return.c')
-rw-r--r--test/Sema/return.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Sema/return.c b/test/Sema/return.c
new file mode 100644
index 0000000..d96cede
--- /dev/null
+++ b/test/Sema/return.c
@@ -0,0 +1,12 @@
+// RUN: clang-cc %s -fsyntax-only -verify
+
+// clang emits the following warning by default.
+// With GCC, -pedantic, -Wreturn-type or -Wall are required to produce the
+// following warning.
+int t14() {
+ return; // expected-warning {{non-void function 't14' should return a value}}
+}
+
+void t15() {
+ return 1; // expected-warning {{void function 't15' should not return a value}}
+}
OpenPOWER on IntegriCloud