We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create2
Description It should pass but complains about syntax error during linting:
contracts/test/StateTest.sol 22:48 error Syntax error: unexpected token {
For the code:
contract SelfDestructFactory { constructor() { } function deploy() public returns(address) { address addr = address(new SelfDestruct{salt: bytes32(uint256(0x1234))}()); return addr; } }
Line 22, is: address addr = address(new SelfDestruct{salt: bytes32(uint256(0x1234))}());
address addr = address(new SelfDestruct{salt: bytes32(uint256(0x1234))}());
Steps to reproduce This section may contain all or a combination of the following:
.soliumrc.json
.soliumignore
In addition, you may add anything you feel is relevant.
Operating System MacOS 10.15.7
Linter version Solium version 1.2.5
Comments If you'd like to share any additional information that doesn't fit in above sections or suggest a solution to the maintainers.
Priority Medium
Medium
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
It should pass but complains about syntax error during linting:
For the code:
Line 22, is:
address addr = address(new SelfDestruct{salt: bytes32(uint256(0x1234))}());
Steps to reproduce
This section may contain all or a combination of the following:
.soliumrc.json
file.soliumignore
In addition, you may add anything you feel is relevant.
Operating System
MacOS 10.15.7
Linter version
Solium version 1.2.5
Comments
If you'd like to share any additional information that doesn't fit in above sections or suggest a solution to the maintainers.
Priority
Medium
The text was updated successfully, but these errors were encountered: