(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0111-8.cs
blob151602b11e458ca24c1cbd8e6273d55aff0cbb30
1 // cs0111.cs: Duplicated method definition for the operator
2 //
3 class C {
4 public static bool operator != (C a, C b)
6 return true;
9 public static bool operator != (C a, C b)
11 return true;
14 public static bool operator == (C a, C b)
15 { return false; }
22 class X {
23 static void Main ()