Remove superflous call to CalcTabRows
[mono.git] / mcs / errors / cs0567.cs
1 // cs0567.cs: Interfaces cannot contain operators\r
2 // Line: 5\r
3 \r
4 interface Interface {\r
5         bool operator == (int a, int b);\r
6 }\r
7 \r
8 \r