Beef
Beef copied to clipboard
Cannot shadow an aliased parameter
This example fails to compile:
public ContainmentType Contains(BoundingBox @box)
{
var @box;
Contains(ref @box, var result);
return result;
}