fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #include <iostream>
  5.  
  6. template <bool>
  7. void foo(){ };
  8.  
  9. constexpr int a = 4;
  10. constexpr int b = 5;
  11. int main(){ foo<(a<b)>(); return 0;}
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty