summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/unterminated-function-macro.h
blob: e81ce34394e5d459f3a2297fe93366fa9374b707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef UNTERMINATED_FUNCTION_MACRO_H
#define UNTERMINATED_FUNCTION_MACRO_H

class Dummy : public QObject {
    Q_OBJECT
}

#define MACRO(arg) do_something(arg)

static void foo() {
    MACRO(foo
}

#endif // UNTERMINATED_FUNCTION_MACRO_H