summaryrefslogtreecommitdiffstats
path: root/tests/manual/corelib/tools/qset/main.cpp
blob: 114f95641b05652796c6ad6a7535e0c92c64cad1 (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
// Copyright (C) 2013 Thorbjørn Lund Martsum - tmartsum[at]gmail.com
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QDebug>
#include <QSet>

void testErase()
{
    QSet<int> a, b;
    a.insert(5);
    a.insert(6);
    a.insert(7);
    b = a;
    a.erase(a.begin());
    b.erase(b.end() - 1);
    qDebug() << "erase - no errors until now";
    a.erase(b.begin());
}

int main()
{
    testErase();
    return 0;
}