1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
  
     | 
    
      %Error: t/t_struct_contents_bad.v:20:19: Unpacked data type 'real' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   20 |       real        r;   
      |                   ^
%Error: t/t_struct_contents_bad.v:22:19: Unpacked data type 'real' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   22 |       shortreal   sr;  
      |                   ^~
%Error: t/t_struct_contents_bad.v:23:19: Unpacked data type 'real' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   23 |       realtime    rt;  
      |                   ^~
%Error: t/t_struct_contents_bad.v:24:19: Unpacked data type 'chandle' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   24 |       chandle     ch;  
      |                   ^~
%Error: t/t_struct_contents_bad.v:25:19: Unpacked data type 'string' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   25 |       string      s;  
      |                   ^
%Error: t/t_struct_contents_bad.v:26:19: Unpacked data type 'event' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   26 |       event       e;  
      |                   ^
%Error: t/t_struct_contents_bad.v:27:25: Unpacked data type 'struct{}t.struct_unpacked_t' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   27 |       struct_unpacked_t sp;   
      |                         ^~
%Error: t/t_struct_contents_bad.v:28:24: Unpacked data type 'union{}t.union_unpacked_t' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   28 |       union_unpacked_t up;    
      |                        ^~
%Error: t/t_struct_contents_bad.v:29:11: Unpacked data type 'int$[0:1]' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   29 |       int uarray[2];    
      |           ^~~~~~
%Error: t/t_struct_contents_bad.v:30:11: Unpacked data type 'class{}Cls' in packed struct/union (IEEE 1800-2023 7.2.1)
                                       : ... note: In instance 't'
   30 |       Cls c;   
      |           ^
%Error: Exiting due to
 
     |