mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
328 B
Solidity
12 lines
328 B
Solidity
contract C {
|
|
function g() external {
|
|
f();
|
|
}
|
|
}
|
|
function f() {}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6660: (50-65): Model checker analysis was not possible because file level functions are not supported.
|
|
// Warning 6660: (50-65): Model checker analysis was not possible because file level functions are not supported.
|