fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Foo {
  5.  
  6. struct{
  7. bool foo : 1;
  8. } bar;
  9.  
  10. Foo() : bar{0} {
  11.  
  12. }
  13.  
  14. };
  15. int main() {
  16. Foo f;
  17. return 0;
  18. }
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty