diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-06 10:16:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-06 11:35:08 +0200 |
commit | c28819ace52704494018f14744674fe09af2d593 (patch) | |
tree | e8f3308f66c5f9d134b72e3eaaf8b67aace5e258 /compilerplugins/clang/test/staticmethods.cxx | |
parent | 244f9cf66bc36f229ccb5712bc8d80166b92266d (diff) |
add unit test for loplugin:staticmethods
Change-Id: Ied72c83dbc364f96e5b78a3cb915b23a1751ac0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152646
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang/test/staticmethods.cxx')
-rw-r--r-- | compilerplugins/clang/test/staticmethods.cxx | 16 |
1 files changed, 16 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: */ |