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

11 lines
224 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
assembly {
function g() -> a,b, c {}
let a, sub, mov := g()
}
}
}
// ----
2019-05-22 22:25:39 +00:00
// ParserError: (102-105): Cannot use builtin function name "sub" as identifier name.