2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0564.cs
blobf17be3f18468276c4c0ef8794801c3a0c47d7174
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
2 // Line: 5
4 class SampleClass {
5 public static int operator << (SampleClass value, SampleClass count) {
6 return 0;