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

10 lines
168 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
assembly {
let a, .a, aa.b := f()
}
}
}
// ----
// ParserError 2314: (70-71): Expected identifier but got '.'