fork(2) download
  1. template< int *x > struct y
  2. {
  3. int *b;
  4. y() { b = x; }
  5. };
  6.  
  7. extern int i = 1;
  8. static int j = 1;
  9. int z = 1;
  10.  
  11. int main() {
  12. y< &i > c1;
  13. y< &j > c2;
  14. y< &z > c3;
  15. return 0;
  16. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty