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
/
array_pop.sol
blob: 3804f911f4ca1890f29fd751b1f6c473ac8b6190 (
plain
) (
blame
)
1
2
3
4
5
6
7
contract
C
{
uint
[]
data
;
function
test
()
public
{
data
.
pop
();
}
}
// ----