mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11482 from ethereum/fixUnreachable2
Fix control-flow handling of modifiers without body.
This commit is contained in:
@@ -23,5 +23,4 @@ contract C is B {
|
||||
// ====
|
||||
// SMTEngine: all
|
||||
// ----
|
||||
// Warning 5740: (62-111): Unreachable code.
|
||||
// Warning 6328: (66-75): CHC: Assertion violation happens here.\nCounterexample:\ns = false\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|
||||
|
||||
@@ -18,5 +18,4 @@ contract B is A {
|
||||
// ====
|
||||
// SMTEngine: all
|
||||
// ----
|
||||
// Warning 5740: (62-123): Unreachable code.
|
||||
// Warning 6328: (94-104): CHC: Assertion violation happens here.\nCounterexample:\ns = true\nx = true\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
abstract contract A {
|
||||
function f() public view mod {
|
||||
require(block.timestamp > 10);
|
||||
}
|
||||
modifier mod() virtual { }
|
||||
}
|
||||
// ----
|
||||
// SyntaxError 2883: (129-132): Modifier body does not contain '_'.
|
||||
@@ -0,0 +1,6 @@
|
||||
abstract contract A {
|
||||
function f() public view mod {
|
||||
require(block.timestamp > 10);
|
||||
}
|
||||
modifier mod() virtual;
|
||||
}
|
||||
Reference in New Issue
Block a user