solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_functiontype.sol

8 lines
86 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
assembly {
let x := f
}
}
}