solidity/test/libsolidity/syntaxTests/metaTypes/typeNotRegularIdentifierVariable.sol
2019-01-17 20:36:48 +01:00

8 lines
135 B
Solidity

contract Test {
function f() public pure {
uint type;
}
}
// ----
// ParserError: (60-64): Expected ';' but got 'type'