Remove useless self assignment

This commit is contained in:
William Entriken 2018-01-28 17:41:09 -05:00 committed by GitHub
parent 053e634276
commit 1cc31bacef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ Given the contract:
contract Foo {
function bar(bytes3[2]) public pure {}
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 {}
}