You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
packageTestistype U8 ismod2**8;
type M1 is
message
F1 : U8;
F2 : Opaque with Size => F1 * 8;
endmessage;
type M1S isarrayof M1;
type M2 is
message
F1 : U8;
F2 : M1S with Size => F1 * 8;
endmessage;
type M3 is
message
F1 : M2;
F2 : U8;
F3 : M1S with Size => F2 * 8;
endmessage;
endTest;
creates uncompilable code:
rflx-test-m3.ads:16:83: unmatched actual in instantiation of "Generic_M3" declared at rflx-test-generic_m3.ads:17 gprbuild: *** compilation phase failed
The text was updated successfully, but these errors were encountered:
The following reproducer
creates uncompilable code:
The text was updated successfully, but these errors were encountered: