Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0590-2.cs
1 // CS0590: User-defined operators cannot return void
2 // Line: 5
3
4 class SampleClass {
5         public static void operator << (SampleClass value, int value2) {
6                 return null;
7         }
8 }