solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/whitespace_in_multiple_assignment.sol

11 lines
194 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
assembly {
function g() -> a,b, c {}
let x, y ,z : = g()
}
}
}
// ----
2019-12-19 16:58:20 +00:00
// ParserError: (109-110): Expected identifier but got '='