fork download
  1. struct _hoge {};
  2.  
  3. typedef struct _hoge2 {} _hoge2;
  4.  
  5. typedef struct {} _hoge3;
  6.  
  7. int main() {
  8. struct _hoge hoge1a;
  9. //_hoge hoge1b; //コンパイル不可
  10.  
  11. struct _hoge2 hoge2a;
  12. _hoge2 hoge2b;
  13.  
  14. //struct _hoge3 hoge3a; //コンパイル不可
  15. _hoge3 hoge3b;
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.02s 1716KB
stdin
Standard input is empty
stdout
Standard output is empty