diff options
-rw-r--r-- | compilerplugins/clang/test/staticmethods.cxx | 16 | ||||
-rw-r--r-- | solenv/CompilerTest_compilerplugins_clang.mk | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/compilerplugins/clang/test/staticmethods.cxx b/compilerplugins/clang/test/staticmethods.cxx new file mode 100644 index 000000000000..cd87c930dc23 --- /dev/null +++ b/compilerplugins/clang/test/staticmethods.cxx @@ -0,0 +1,16 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +class foo +{ + // expected-error@+1 {{this member function can be declared static [loplugin:staticmethods]}} + int method1() { return 5; } +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ diff --git a/solenv/CompilerTest_compilerplugins_clang.mk b/solenv/CompilerTest_compilerplugins_clang.mk index 05d0d6f3d088..a4bf3dbf45a9 100644 --- a/solenv/CompilerTest_compilerplugins_clang.mk +++ b/solenv/CompilerTest_compilerplugins_clang.mk @@ -77,6 +77,7 @@ $(eval $(call gb_CompilerTest_add_exception_objects,compilerplugins_clang, \ compilerplugins/clang/test/singlevalfields \ compilerplugins/clang/test/staticconstfield \ compilerplugins/clang/test/staticdynamic \ + compilerplugins/clang/test/staticmethods \ compilerplugins/clang/test/stdfunction \ compilerplugins/clang/test/stringadd \ compilerplugins/clang/test/stringconcatauto \ |