The following code yields an error
a = QuantumFloat(2)
swap(a[0], a[1])
cx(a[0], a[1])
multi_measurement([a])
>> AttributeError: 'int' object has no attribute 'identifier'
The same happens when using a.get_measurement. This appears to be a problem with the swap and cx gate together with the measurement. Removing any of the three operations avoids the error.