aboutsummaryrefslogtreecommitdiff
path: root/test/Frontend/diagnostics-option-names.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Frontend/diagnostics-option-names.c')
-rw-r--r--test/Frontend/diagnostics-option-names.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Frontend/diagnostics-option-names.c b/test/Frontend/diagnostics-option-names.c
new file mode 100644
index 000000000000..ed0d2ed8ef9e
--- /dev/null
+++ b/test/Frontend/diagnostics-option-names.c
@@ -0,0 +1,8 @@
+// RUN: not %clang_cc1 -fdiagnostics-show-option -Werror -Weverything %s 2> %t
+// RUN: FileCheck < %t %s
+
+int f0(int, unsigned);
+int f0(int x, unsigned y) {
+// CHECK: comparison of integers of different signs{{.*}} [-Werror,-Wsign-compare]
+ return x < y; // expected-error {{ : 'int' and 'unsigned int' }}
+}