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: 95525373c58160f84251cac9771f2a8a4b009a99 (plain)
1
2
3
4
5
6
7
8
// CS0526: Interfaces cannot contain contructors
// Line: 5

public interface Interface {
        public Interface ()
        {
        }
}