Moved a canBeStored assert for struct members to TypeChecker

This is to avoid a assert from failing for forward declared user defined value types.
This commit is contained in:
hrkrshnn
2021-10-26 18:43:04 +02:00
parent 9428dbc94f
commit 51009c005d
4 changed files with 14 additions and 1 deletions
@@ -0,0 +1,3 @@
struct S { U u; }
contract C { S s; }
type U is address;