2019-08-15 13:35:57 +00:00
|
|
|
struct S { uint a; }
|
|
|
|
contract C {
|
|
|
|
struct S { address x; }
|
|
|
|
function f() public view {
|
|
|
|
S memory s = S(address(this));
|
|
|
|
s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 2519: (38-61): This declaration shadows an existing declaration.
|