Code has been added to clipboard!

Reference Types Not Compiling

Example
// This does not compile.

pragma solidity ^0.4.0;

contract cont {
    function func() {
        // The following line will create a type error since
        // uint[3] memory is inconvertable to uint[] memory.
        uint[] x = [uint(1), 3, 4];
    }
}