Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
bug_elaboration_code.adb
blob: 0aa7abe808a6150122b6990ddc683684f6b3a5d4 [
file
] [
log
] [
blame
]
package
body
Bug_Elaboration_Code
is
procedure
Increment_I
is
begin
I
:=
I
+
1
;
end
Increment_I
;
begin
I
:=
5
;
Increment_I
;
J
:=
I
;
end
Bug_Elaboration_Code
;