Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0526.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08c59d1a34f654e665fb3f68df18a18cc74f8d72 (plain)
1
2
3
4
5
6
7
8
// cs0526.cs: Interfaces cannot contain constructors
// Line: 5

public interface Interface {
        public Interface ()
        {
        }
}