summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0526.cs
blob: 95525373c58160f84251cac9771f2a8a4b009a99 (plain)
1
2
3
4
5
6
7
8
// CS0526: Interfaces cannot contain contructors
// Line: 5

public interface Interface {
        public Interface ()
        {
        }
}