You can't don Assert on records. The following will fail in elaboration. ```python from nmigen import * from nmigen.asserts import Assert rec = Record([("sig1", 3), ("sig2", 3)]) Assert(rec == 3) ```