solidity/test/libsolidity/syntaxTests/scoping/scoping_self_use.sol

6 lines
75 B
Solidity
Raw Normal View History

2018-03-15 23:47:12 +00:00
contract test {
function f() pure public {
uint a = a;
}
}