solidity/test/cmdlineTests/yul_unimplemented/input.sol

11 lines
170 B
Solidity
Raw Normal View History

2020-09-14 17:08:28 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract test {
struct S {
uint x;
}
S str;
constructor() {
delete str;
}
}