solidity/test/libsolidity/ASTJSON/assembly/nested_functions.sol
2020-01-28 17:57:48 +01:00

13 lines
166 B
Solidity

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