mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
323 B
Solidity
12 lines
323 B
Solidity
contract C {
|
|
function f() public pure {
|
|
assembly {
|
|
function f.() {}
|
|
function g.f() {}
|
|
}
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 3927: (63-79): User-defined identifiers in inline assembly cannot contain '.'.
|
|
// DeclarationError 3927: (86-103): User-defined identifiers in inline assembly cannot contain '.'.
|