solidity/test/libsolidity/ASTJSON/assembly/nested_functions.sol

13 lines
166 B
Solidity
Raw Normal View History

contract C {
function f() public pure returns (uint x) {
assembly {
function f1() {
function f2() { }
x := 2
}
}
}
}
// ----