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
/
inheritance
/
override
/
function_state_variable.sol
blob: 023a161aed7c6177efdb8aa0ec979738aa912bfb (
plain
) (
blame
)
1
2
interface
ERC20
{
function
x
()
external returns
(
uint
); }
contract
C
is
ERC20
{
uint
public
x
; }