1 2 3 4 5 6 7
library L { function f(mapping(uint=>uint) storage x, mapping(uint=>uint) storage y) external { x = y; } } // ---- // TypeError 9214: (108-109): Types in storage containing (nested) mappings cannot be assigned to.