fork(1) download
  1. #include <iostream>
  2.  
  3.  
  4. struct beispiel{
  5. beispiel(){
  6. std::cout << __PRETTY_FUNCTION__ << std::endl;
  7. }
  8. };
  9.  
  10.  
  11. thread_local static volatile beispiel bsp;
  12.  
  13.  
  14. int main(){
  15. (void)bsp;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
beispiel::beispiel()