Signed Overflow

What does the C++ standard say about the following code?

#include <climits>
int main() {
    int x = INT_MAX;
    x = x + 1;
    return 0;
}