a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
9 lines
297 B
C#
9 lines
297 B
C#
// 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
|
|
// Line: 5
|
|
|
|
class SampleClass {
|
|
public static int operator << (SampleClass value, SampleClass count) {
|
|
return 0;
|
|
}
|
|
}
|