solidity/test/libsolidity/semanticTests/inlineAssembly/function_name_clash.sol
2022-05-19 20:23:28 +02:00

12 lines
257 B
Solidity

contract C {
function f() public pure returns (uint r) {
assembly { function f() -> x { x := 1 } r := f() }
}
function g() public pure returns (uint r) {
assembly { function f() -> x { x := 2 } r := f() }
}
}
// ----
// f() -> 1
// g() -> 2