The following code has an error as noted, please help in this regards.
typedef enum L3 {e_s, e_off,e_on};
struct L
{
    L3 List3;
    float value;
    int MT_ID;
};
list <L> eventlist1;
L rr={e_s,1.3,3};
eventlist1.push_back.(rr);   // here is the error 
 
     
     
     
     
    