mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
577 B
Solidity
16 lines
577 B
Solidity
contract C {
|
|
function f() public pure {
|
|
assembly {
|
|
let a. := 2
|
|
let a.. := 2
|
|
let a.b := 2
|
|
let a..b := 2
|
|
}
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 3927: (67-69='a.'): User-defined identifiers in inline assembly cannot contain '.'.
|
|
// DeclarationError 3927: (85-88='a..'): User-defined identifiers in inline assembly cannot contain '.'.
|
|
// DeclarationError 3927: (104-107='a.b'): User-defined identifiers in inline assembly cannot contain '.'.
|
|
// DeclarationError 3927: (123-127='a..b'): User-defined identifiers in inline assembly cannot contain '.'.
|