Added default data locations to parameters for end to end tests.

This commit is contained in:
Chase McDermott
2018-07-16 14:18:16 +02:00
committed by chriseth
parent c5ff173431
commit f48d01d066
11 changed files with 240 additions and 240 deletions
@@ -350,7 +350,7 @@ BOOST_AUTO_TEST_CASE(dynamic_return_types_not_possible)
{
char const* sourceCode = R"(
contract C {
function f(uint) public returns (string);
function f(uint) public returns (string memory);
function g() public {
string memory x = this.f(2);
// we can assign to x but it is not usable.