Display error messages instead of stack traces.
[mcs.git] / errors / cs0216-2.cs
blob1a2eb279917c4643fbce151c1d8827ebd59963ac
1 // cs0216-2.cs: The operator `X.operator true(X)' requires a matching operator `false' to also be defined
2 // Line: 4
3 class X {
4 public static bool operator true (X i)
6 return true;
9 static void Main ()