* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0526.cs
1 // cs0526.cs: Interfaces cannot contain constructors
2 // Line: 5
3
4 public interface Interface {
5         public Interface ()
6         {
7         }
8 }