solidity/test/libsolidity/syntaxTests/metaTypes/typeNotRegularIdentifierVariable.sol

8 lines
140 B
Solidity
Raw Normal View History

2019-01-10 11:11:55 +00:00
contract Test {
function f() public pure {
uint type;
}
}
// ----
// ParserError 2314: (60-64): Expected ';' but got 'type'