aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/bytes_pop.sol
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-05-31 00:32:08 +0800
committerGitHub <noreply@github.com>2018-05-31 00:32:08 +0800
commit5a73044fa77c0572a3a5375b0c557313e8c600a7 (patch)
treeb73bfd0559cc70eea3aa022a375bfe273e68445d /test/libsolidity/syntaxTests/array/bytes_pop.sol
parenta77531d245d24d82e11858fb99ebfc9ec53b5d38 (diff)
parentfea0d116f7d95e9a39f0c80c5156cb3656b03ce0 (diff)
downloaddexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.tar
dexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.tar.gz
dexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.tar.bz2
dexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.tar.lz
dexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.tar.xz
dexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.tar.zst
dexon-solidity-5a73044fa77c0572a3a5375b0c557313e8c600a7.zip
Merge pull request #3743 from ethereum/popStorageArray
pop() for storage arrays
Diffstat (limited to 'test/libsolidity/syntaxTests/array/bytes_pop.sol')
-rw-r--r--test/libsolidity/syntaxTests/array/bytes_pop.sol7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/array/bytes_pop.sol b/test/libsolidity/syntaxTests/array/bytes_pop.sol
new file mode 100644
index 00000000..cd5aa0eb
--- /dev/null
+++ b/test/libsolidity/syntaxTests/array/bytes_pop.sol
@@ -0,0 +1,7 @@
+contract C {
+ bytes data;
+ function test() public {
+ data.pop();
+ }
+}
+// ----