summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0567.cs
blob: 1a0ac5ad369a7333722761cc719955bd357c7b7d (plain)
1
2
3
4
5
6
7
8
// CS0567: Interfaces cannot contain operators
// Line: 5

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