mirror of
https://github.com/boostorg/concept_check.git
synced 2026-07-10 18:30:51 +02:00
2b8a18ecc9
[SVN r8477]
9 lines
125 B
C++
9 lines
125 B
C++
#include <list>
|
|
#include <algorithm>
|
|
|
|
int main() {
|
|
std::list<int> v;
|
|
std::stable_sort(v.begin(), v.end());
|
|
return 0;
|
|
}
|