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

10 lines
129 B
Solidity
Raw Normal View History

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