solidity/test/libsolidity/smtCheckerTests/file_level/free_function_2.sol
2021-04-08 21:03:39 +02:00

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.