mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove useless self assignment
This commit is contained in:
parent
053e634276
commit
1cc31bacef
@ -192,7 +192,7 @@ Given the contract:
|
|||||||
contract Foo {
|
contract Foo {
|
||||||
function bar(bytes3[2]) public pure {}
|
function bar(bytes3[2]) public pure {}
|
||||||
function baz(uint32 x, bool y) public pure returns (bool r) { r = x > 32 || y; }
|
function baz(uint32 x, bool y) public pure returns (bool r) { r = x > 32 || y; }
|
||||||
function sam(bytes name, bool z, uint[] data) public pure {name=name; z=z; data=data;}
|
function sam(bytes, bool, uint[]) public pure {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user