language: C++11 (gcc-4.7.2)
date: 488 days 9 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
#include <functional>
 
int main (int argc, char *argv[])
{
        std::hash<const int> h;
        h(10);
}
 
/home/lOLq64/cctG3bP4.o: In function `main':
prog.cpp:(.text+0x19): undefined reference to `std::hash<int const>::operator()(int) const'
collect2: ld returned 1 exit status