[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0564-2.cs
blobd40b8f82c233f7140418010c742e6a2719dd1b05
1 // CS0564: 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 << (object value, int count) {
6 return 0;