mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
28 lines
388 B
JSON
28 lines
388 B
JSON
|
{
|
||
|
"language": "Solidity",
|
||
|
"sources":
|
||
|
{
|
||
|
"A":
|
||
|
{
|
||
|
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\n\ncontract test {
|
||
|
struct S {
|
||
|
uint x;
|
||
|
}
|
||
|
S s;
|
||
|
function f(bool b) public {
|
||
|
s.x |= b ? 1 : 2;
|
||
|
assert(s.x > 0);
|
||
|
}
|
||
|
}"
|
||
|
}
|
||
|
},
|
||
|
"settings":
|
||
|
{
|
||
|
"modelChecker":
|
||
|
{
|
||
|
"engine": "all",
|
||
|
"showUnproved": "aaa"
|
||
|
}
|
||
|
}
|
||
|
}
|