Remove deprecated syntax from a test

This commit is contained in:
chriseth 2018-05-04 16:20:03 +02:00 committed by Alex Beregszaszi
parent 07e862a145
commit 43ec1699ba

View File

@ -2894,7 +2894,7 @@ BOOST_AUTO_TEST_CASE(dynamic_return_types_not_possible)
contract C {
function f(uint) public returns (string);
function g() public {
var (x,) = this.f(2);
var x = this.f(2);
// we can assign to x but it is not usable.
bytes(x).length;
}