summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorErich Keane <erich.keane@intel.com>2019-01-25 17:01:42 +0000
committerErich Keane <erich.keane@intel.com>2019-01-25 17:01:42 +0000
commit3e7fda229d3f82034f43c12bcb5c91f8ba08db94 (patch)
tree0f6c42c6e7d0d3dd263e2023305e5cb9263dfd83 /clang/test
parent0020f8bb23bc539bce640a479a73082ed2cb6036 (diff)
downloadbcm5719-llvm-3e7fda229d3f82034f43c12bcb5c91f8ba08db94.tar.gz
bcm5719-llvm-3e7fda229d3f82034f43c12bcb5c91f8ba08db94.zip
Allow 'static' storage specifier on an out-of-line member function template
declaration in MSVCCompat mode Microsoft compiler permits the use of 'static' storage specifier outside of a class definition if it's on an out-of-line member function template declaration. This patch allows 'static' storage specifier on an out-of-line member function template declaration with a warning in Clang (To be compatible with Microsoft). Intel C/C++ compiler allows the 'static' keyword with a warning in Microsoft mode. GCC allows this with -fpermissive. Patch By: Manna Differential Revision: https://reviews.llvm.org/D56473 Change-Id: I97b2d9e9d57cecbcd545d17e2523142a85ca2702 llvm-svn: 352219
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/SemaCXX/warn-static-outside-class-definition.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/warn-static-outside-class-definition.cpp b/clang/test/SemaCXX/warn-static-outside-class-definition.cpp
new file mode 100644
index 00000000000..5235d35cb11
--- /dev/null
+++ b/clang/test/SemaCXX/warn-static-outside-class-definition.cpp
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 -fms-compatibility -fsyntax-only -verify %s
+
+struct C {
+ template <typename T> static int foo(T);
+};
+
+template <typename T> static int C::foo(T) {
+ //expected-warning@-1 {{'static' can only be specified inside the class definition}}
+ return 0;
+}
+
OpenPOWER on IntegriCloud