Email or username:

Password:

Forgot your password?
Hailey

what on earth is going on over at C++

are they ok

For example, this code prints "Hello, World!" in recent versions of clang:

#include <iostream>

int main() {
  while (true)
    ; 
}

void unreachable() {
  std::cout << "Hello world!" << std::endl;
}
1 comment
Go Up