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
/
modifiers
/
legal_modifier_override.sol
blob: 51c3fd8017e1aa428fc0387c1ebebb6935215891 (
plain
) (
blame
)
1
2
contract
A
{
modifier
mod
(
uint
a
) {
_
; } }
contract
B
is
A
{
modifier
mod
(
uint
a
) {
_
; } }