aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangtools/unit-tests/clangtidy_clazy/tidy_example.cpp
blob: e13c5262eeeb54468257409fa93923a3ffd30c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

class Base
{
public:
    // misc-noexcept-move-constructor
    // misc-unconventional-assign-operator
    // misc-unused-parameters
    Base operator=(Base &&param) { return {}; }
    virtual int function()
    {
        // modernize-use-nullptr
        int *a = 0;
        return 0;
    }
};

int main() {
  return 0;
}