aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangcodemodel/test/data/follow-symbol/main.cpp
blob: c23af02af6e708a96757e6ca669844daa6e317eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "header.h"
#include "cursor.h"
Fooish::Bar::Bar() {

}

class X;

using YYY = Fooish::Bar;

int foo() {
    YYY bar;
    bar.member = 30;
    Fooish::Barish barish;
    bar.member++;
    barish.mem = Fooish::flvalue;

    barish.foo(1.f, 2);
    foo(1, 2.f);
    return 1;

    X* x;
}

int Fooish::Barish::foo(float p, int u)
{
    return ::foo() + p + u;
}

class FooClass
{
public:
    FooClass();
    static int mememember;
};

FooClass::FooClass() {
    NonFinalStruct nfStruct; nfStruct.function();
}

int main() {
    return foo() + FooClass::mememember + TEST_DEFINE;
}

class Bar
{
public:
    int operator&();
    Bar& operator[](int);
};

int Bar::operator&() {
    return 0;
}

Bar& Bar::operator[](int) {
    return *this;
}

struct S {
    union  {
        int i = 12;
        void *something;
    };
    int func(bool b) {
        if (b)
            return i;
        int i = 42;
        return i;
    }
};