solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/294_long_uint_variable_fails.sol

8 lines
178 B
Solidity

contract test {
function f() public {
uint99999999999999999999999999 something = 3;
}
}
// ----
// DeclarationError: (50-80): Identifier not found or not unique.