mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
165 B
Solidity
8 lines
165 B
Solidity
function delete(uint) pure suffix returns (uint) {}
|
|
|
|
contract C {
|
|
uint x = 1 delete;
|
|
}
|
|
// ----
|
|
// ParserError 2314: (9-15): Expected identifier but got 'delete'
|