fork download
  1. template<typename T> struct foo
  2. {
  3. struct bar
  4. {
  5. T* _;
  6. };
  7. };
  8.  
  9. foo<int>::bar x;
  10.  
  11. int main(int, char**)
  12. {
  13. x._ = 0;
  14. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty