From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,803df5f3f60558d5 X-Google-Attributes: gid103376,public From: Paul Whittington Subject: Uninitialized "out" parameters Date: 1996/07/18 Message-ID: <31EEACDA.64880EEB@sage.inel.gov>#1/1 X-Deja-AN: 169597233 content-type: text/plain; charset=us-ascii organization: Lockheed-Martin Idaho Technologies Company mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 3.0b5aGold (X11; I; SunOS 4.1.3_U1 sun4m) Date: 1996-07-18T00:00:00+00:00 List-Id: In the following Ada program, should either the compiler or the run-time get some kind of error because the out parameter is not initialized? procedure Testit is procedure SubP (op : out Integer) is begin op := op+1; end SubP; I : Integer; begin SubP (I); end Testit;