Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0567.cs
1 // CS0567: Interfaces cannot contain operators
2 // Line: 5
3
4 interface Interface {
5         bool operator == (int a, int b);
6 }
7
8