aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/address/contract_to_address.sol
blob: ec2f8184d6db98753e7ed4e3d9072d8e7f5d75ec (plain) (blame)
1
2
3
4
5
6
7
contract C {
  function f() public view {
    address a = address(this);
    a;
  }
}
// ----