mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix internal error when the abstract-nondet SMTChecker natspec annotation is used with a wrong option multiple times for the same function
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
contract C {
|
||||
/// @custom:smtchecker b
|
||||
/// @custom:smtchecker
|
||||
/// @custom:smtchecker a b c
|
||||
function f() internal {}
|
||||
}
|
||||
|
||||
contract D is C {}
|
||||
// ----
|
||||
// Warning 3130: (106-130): Unknown option for "custom:smtchecker": "b"
|
||||
Reference in New Issue
Block a user