solidity/test/libsolidity/ASTJSON/assembly/nested_functions.sol
2023-05-11 10:56:55 -05:00

12 lines
163 B
Solidity

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