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
/
parsing
/
modifier_arguments.sol
blob: 27b5b13b75eea0a8b5256a6eeb25cada19654626 (
plain
) (
blame
)
1
2
3
contract
c
{
modifier
mod
(
address
a
) {
if
(
msg
.
sender
==
a
)
_
; }
}