-- { dg-do run }with GNAT.Compiler_Version;procedure Test_Version ispackage Vsn is new GNAT.Compiler_Version;use Vsn;
X :constantString:= Version;beginif X'Length=78then-- 78 = Ver_Len_Max + Ver_Prefix'Length-- actual version should be shorter than thisraise Program_Error;end if;end Test_Version;