summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/attr-sentinel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/attr-sentinel.cpp')
-rw-r--r--test/SemaCXX/attr-sentinel.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/SemaCXX/attr-sentinel.cpp b/test/SemaCXX/attr-sentinel.cpp
new file mode 100644
index 0000000..0293a5d
--- /dev/null
+++ b/test/SemaCXX/attr-sentinel.cpp
@@ -0,0 +1,6 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+void f(int, ...) __attribute__((sentinel));
+
+void g() {
+ f(1, 2, __null);
+}
OpenPOWER on IntegriCloud