fork download
  1. using System;
  2.  
  3. class SomeAttribute : Attribute {}
  4.  
  5. [Some()]
  6. interface I
  7. {
  8. void Method();
  9. }
  10.  
  11. public class Test : I
  12. {
  13. [Some()]
  14. public void Method() {}
  15.  
  16. public static void Main(){}
  17. }
Success #stdin #stdout 0s 130944KB
stdin
Standard input is empty
stdout
Standard output is empty