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
/
multiVariableDeclaration
/
multiSingleVariableDeclaration.sol
blob: 7db98577e7be51b8f1c691743161b4d9c92ca88b (
plain
) (
blame
)
1
2
3
4
5
6
contract
C
{
function
f
()
internal returns
(
uint
) {
(
uint
a
) =
f
();
a
;
}
}