contract C { int[10] x; function f() public view { int[](x); int(x); } } // ---- // TypeError: (55-63): Explicit type conversion not allowed from "int256[10] storage ref" to "int256[] storage pointer". // TypeError: (67-73): Explicit type conversion not allowed from "int256[10] storage ref" to "int256".