mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
333 B
JSON
24 lines
333 B
JSON
|
{
|
||
|
"language": "Solidity",
|
||
|
"sources":
|
||
|
{
|
||
|
"A":
|
||
|
{
|
||
|
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\n\ncontract test {
|
||
|
uint x;
|
||
|
function f() public view {
|
||
|
assert(x < 10);
|
||
|
}
|
||
|
}"
|
||
|
}
|
||
|
},
|
||
|
"settings":
|
||
|
{
|
||
|
"modelChecker":
|
||
|
{
|
||
|
"engine": "chc",
|
||
|
"invariants": ["contract"]
|
||
|
}
|
||
|
}
|
||
|
}
|