mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
338 B
Solidity
12 lines
338 B
Solidity
contract C {
|
|
function f() public pure {
|
|
assembly {
|
|
function f() -> x, y, z {}
|
|
let a., aa.b := f()
|
|
}
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 3927: (100-102): User-defined identifiers in inline assembly cannot contain '.'.
|
|
// DeclarationError 3927: (104-108): User-defined identifiers in inline assembly cannot contain '.'.
|