fork download
  1. int main()
  2. {
  3. //int a = nullptr; // Doesn't Compile
  4. //char b = nullptr; // Doesn't Compile
  5. bool c = nullptr; // Compiles
  6.  
  7. return 0;
  8. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty