58855fb77e7ff2423ad538607709108e15c7e333
[mono.git] / mcs / errors / cs0526.cs
1 // cs0526.cs: Interfaces cannot contain constructors\r
2 // Line: 5\r
3 \r
4 public interface Interface {\r
5         public Interface () {\r
6         }\r
7 }\r
8 \r
9 \r
10 \r