index
:
dexon-solidity
develop
release
DEXON fork of Solidity (https://github.com/dexon-foundation/dsolidity)
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
libsolidity
/
syntaxTests
/
array
/
bytes_pop.sol
blob: cd5aa0eb6f6392b49c68886241543a271ef7ce2e (
plain
) (
blame
)
1
2
3
4
5
6
7
contract
C
{
bytes
data
;
function
test
()
public
{
data
.
pop
();
}
}
// ----