Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Cannot shadow an aliased parameter

Open jayrulez opened this issue 3 years ago • 0 comments

This example fails to compile:

        public ContainmentType Contains(BoundingBox @box)
        {
            var @box;
            Contains(ref @box, var result);
            return result;
        }

jayrulez avatar Sep 24 '22 01:09 jayrulez