(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0448.cs
blob2eb312e8e0f02755a8821df08532392525c3fe31
1 // cs0448.cs: The return type for ++ or -- operator must be the containing type or derived from the containing type// Line: 5
2 class SampleClass { public static int operator ++ (SampleClass value) { return new SampleClass(); }}