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

9 lines
121 B
Solidity
Raw Normal View History

contract C {
function f() pure public {
assembly {
function f (a, b , c ) -> y,x,z {
}
}
}
}