diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-08-02 04:59:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 04:59:19 +0800 |
commit | e1b695f1998098dc9d06f3f9dc7e9c126e078c40 (patch) | |
tree | c8348bc7c504a6e273ca19ed1fd18cc590fe34a4 /test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol | |
parent | a78565e44fbcb1d2e3244a6100c0da464ca73c19 (diff) | |
parent | 8781990ff3a70934d5dcfad50cfb645fe3473c94 (diff) | |
download | dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.tar dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.tar.gz dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.tar.bz2 dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.tar.lz dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.tar.xz dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.tar.zst dexon-solidity-e1b695f1998098dc9d06f3f9dc7e9c126e078c40.zip |
Merge pull request #4399 from ethereum/contractWhitespace
Remove trailing whitespace in all contract files.
Diffstat (limited to 'test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol b/test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol index b6dd12b8..07113093 100644 --- a/test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol +++ b/test/libsolidity/syntaxTests/inlineAssembly/storage_reference.sol @@ -1,6 +1,6 @@ contract C { uint[] x; - function() external { + function() external { uint[] storage y = x; assembly { pop(y) @@ -8,4 +8,4 @@ contract C { } } // ---- -// TypeError: (119-120): You have to use the _slot or _offset suffix to access storage reference variables. +// TypeError: (118-119): You have to use the _slot or _offset suffix to access storage reference variables. |