solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/581_improve_name_suggestion_three_letters.sol

13 lines
261 B
Solidity
Raw Normal View History

contract c {
function f () public
{
a = abd;
a = ade;
}
uint256 a;
uint256 abc;
}
// ----
// DeclarationError: (56-59): Undeclared identifier. Did you mean "abc" or "abi"?
// DeclarationError: (73-76): Undeclared identifier.