fmt.sol 574 B

1234567891011121314151617181920
  1. contract ThisExpression {
  2. function someFunc() public {}
  3. function someVeryVeryVeryLongVariableNameThatWillBeAccessedByThisKeyword()
  4. public
  5. {}
  6. function test() external {
  7. this.someFunc();
  8. this.someVeryVeryVeryLongVariableNameThatWillBeAccessedByThisKeyword();
  9. this // comment1
  10. .someVeryVeryVeryLongVariableNameThatWillBeAccessedByThisKeyword();
  11. address(this).balance;
  12. address thisAddress = address(
  13. // comment2
  14. /* comment3 */
  15. this // comment 4
  16. );
  17. }
  18. }