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

8 lines
125 B
Solidity
Raw Normal View History

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