summaryrefslogtreecommitdiffstats
path: root/tests/manual/corelib/tools/qset/main.cpp
blob: 6b86d2fb062668243c72d8e54ffdcdd4b710140a (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

#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;
}