fork download
  1. struct Bool {
  2. protected:
  3. Bool() {}
  4. };
  5. struct TrueImpl : Bool {} True;
  6. struct FalseImpl : Bool {} False;
  7.  
  8. int main() {
  9. Bool b = True;
  10. }
Success #stdin #stdout 0s 2880KB
stdin
Standard input is empty
stdout
Standard output is empty