solidity/test/libsolidity/smtCheckerTests/functions/constructor_this.sol

15 lines
531 B
Solidity
Raw Normal View History

contract C {
function f() public pure {}
2020-06-23 12:14:24 +00:00
constructor() {
C c = this;
c.f(); // this does not warn now, but should warn in the future
this.f();
(this).f();
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 5805: (165-169): "this" used in constructor. Note that external functions of a contract cannot be called while it is being constructed.
// Warning 5805: (184-188): "this" used in constructor. Note that external functions of a contract cannot be called while it is being constructed.