solidity
solidity copied to clipboard
Solidity, the Smart Contract Programming Language
- [x] https://github.com/ethereum/solidity/issues/9211 - [x] https://github.com/ethereum/solidity/issues/11531 - [ ] https://github.com/ethereum/solidity/issues/11969
- [ ] https://github.com/ethereum/solidity/pull/12362 - [ ] https://github.com/ethereum/solidity/pull/12656
Add InlineArrayType to support literals conversion to statically and dynamically allocated arrays.
fixes #11879 fixes #13085 This is an early version of the changes needed to support literals conversion to dynamic arrays. Definitely it is not ready to review yet. Things we...
```solidity interface I { struct S { uint a; } function s() external returns (S memory); } contract C is I { S public override s; } ``` The function...
fixes #11700 depends on #12566