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