fork download
  1.  
  2. template<typename T>
  3. struct Outer
  4. {
  5. struct Inner;
  6.  
  7. auto f(Inner) -> void;
  8. };
  9.  
  10. template<class T>
  11. auto Outer<T>::f(Inner) -> void
  12. {
  13.  
  14. }
  15.  
  16. int main() {}
Success #stdin #stdout 0s 4440KB
stdin
Standard input is empty
stdout
Standard output is empty