fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Hoge : IHoge
  5. {
  6. public static void Main()
  7. {
  8. IEnumerable<IHoge> list = new List<Hoge>();
  9. }
  10. }
  11.  
  12. interface IHoge
  13. {
  14. }
Success #stdin #stdout 0.01s 23144KB
stdin
Standard input is empty
stdout
Standard output is empty