Is it not allowed to add annotations in IR? In my ...
# compiler
n
Is it not allowed to add annotations in IR? In my producer module, I am adding a new annotation (which has runtime retention) using
IrClass.annotations += irCallConstructor(…)
. In my consumer module, which depends on the producer, I fetch the same
IrClass
but the new annotation is not there.