2004-02-04 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs0564.cs
1 // cs0564.cs: Overloaded shift operator must have the type of the first operand be the containing type, and the type of the second operand must be int\r
2 // Line: 5\r
3 \r
4 class SampleClass {\r
5         public static int operator << (SampleClass value, SampleClass count) {\r
6                 return 0;\r
7         }\r
8 }\r