solidity/test/libsolidity/syntaxTests/freeFunctions/this_in_free_function.sol
2022-04-01 23:41:18 -05:00

7 lines
164 B
Solidity

contract C {}
function f() {
this;
}
// ----
// DeclarationError 7576: (33-37='this'): Undeclared identifier. "this" is not (or not yet) visible at this point.