Why can't I use record in the bit syntax? ex) -record( date, { month, day } ). test() -> A = #date{month = 1, day = 20 }, << A#date.month/8, A#date.day/8 >>. This will give me the error during the compilation. regards,