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

13 lines
164 B
Solidity
Raw Normal View History

contract C {
function f() public pure returns (uint x) {
assembly {
function f1() {
function f2() { }
}
2022-02-17 12:38:29 +00:00
x := 2
}
}
}
// ----