mirror of
https://github.com/boostorg/concept_check.git
synced 2026-01-25 16:32:18 +01:00
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;
|
|
}
|