Files
modern-cpp-tutorial/code/10/10.1.without.concepts.cpp
2019-07-11 12:34:14 +02:00

8 lines
163 B
C++

#include <list>
#include <algorithm>
int main() {
std::list<int> l = {1, 2, 3};
// std::sort(l.begin(), l.end()); // tons of compile error
return 0;
}