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

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

interface Interface {
        bool operator == (int a, int b);
}