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

cs0531.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cc6488c150f0fd6460244669957553800d6e1bf (plain)
1
2
3
4
5
6
7
8
9
10
// cs0531.cs: 'Interface.Foo()' : interface members cannot have a definition
// Line: 5

public interface Interface {
        void Foo () {
        }
}