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