summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/storage-class.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/storage-class.cpp')
-rw-r--r--test/SemaCXX/storage-class.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/SemaCXX/storage-class.cpp b/test/SemaCXX/storage-class.cpp
new file mode 100644
index 0000000..a2e2063
--- /dev/null
+++ b/test/SemaCXX/storage-class.cpp
@@ -0,0 +1,4 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+extern const int PR6495a = 42;
+extern int PR6495b = 42; // expected-warning{{'extern' variable has an initializer}}
+extern const int PR6495c[] = {42,43,44};
OpenPOWER on IntegriCloud