fork download
  1. #include <stdio.h>
  2.  
  3. struct Foo {
  4. _Bool b:2;
  5. };
  6.  
  7. int main(void) {
  8. // your code goes here
  9. return 0;
  10. }
  11.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:4:2: error: width of 'b' exceeds its type
  _Bool b:2;
  ^
stdout
Standard output is empty