mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
205 B
Solidity
8 lines
205 B
Solidity
contract C {
|
|
using {this.contractFunction} for uint;
|
|
|
|
function contractFunction(uint) external view {}
|
|
}
|
|
// ----
|
|
// DeclarationError 9589: (24-45): Identifier is not a function name or not unique.
|