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: 318b5296d8be5abe40cf9e5ea382c8aece28e6e1 (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 () {
        }
}