C# Brain Damage
//Works fine short foo = 3; short bar = foo; //Failure: cannot implicitly convert int to short short foo = 3; short bar = -foo;
ARGH!
//Works fine short foo = 3; short bar = foo; //Failure: cannot implicitly convert int to short short foo = 3; short bar = -foo;
ARGH!