Updated with review feedback.
[mono.git] / mcs / errors / cs0526.cs
1 // CS0526: Interfaces cannot contain contructors
2 // Line: 5
3
4 public interface Interface {
5         public Interface ()
6         {
7         }
8 }