summaryrefslogtreecommitdiff
path: root/src/plugins/cppeditor/testcases/highlightingtestcase.cpp
blob: 770b22e553e314643f398ac6afac9174b0e6d353 (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
auto func()
{
    return R"(foo
    foobar
        R"notaprefix!(
    barfoobar)" R"(second)" /* comment */ R"(third)";
}

void keywords()
{
    bool b1 = true;
    bool b2 = false;
    void *p = nullptr;
}

void numberLiterals()
{
    auto integer         = 1;
    auto numFloat1       = 1.2f;
    auto numFloat2       = 1.2;
}

template<int n = 5> class C;

struct ConversionFunction {
    operator int();
};

template<typename T> concept NoConstraint = true;