aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/154_array_copy_with_different_types_conversion_possible.sol
blob: b15a935032065f7edebf8978c25300f5ca2fc014 (plain) (blame)
1
2
3
4
5
contract c {
    uint32[] a;
    uint8[] b;
    function f() public { a = b; }
}