consulo-csharp
consulo-csharp copied to clipboard
Wrong implicit cast on prefix operation
Error: Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?)(CS0266)
Code
public void test() {
short count = 0;
count -= Math.Min(1, 1);
^^^ here
}