contract c { mapping(uint => uint) y; function f() view public { mapping(uint => uint) memory x = y; x; } } // ---- // TypeError 6651: (81-111): Data location must be "storage" for variable, but "memory" was given.