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

8 lines
120 B
Solidity
Raw Normal View History

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