2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2013 Thorbjørn Lund Martsum - tmartsum[at]gmail.com
|
2024-02-02 13:36:10 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2013-05-03 04:45:10 +00:00
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|