--* From SMWATT%WATSON.vnet.ibm.com@yktvmh.watson.ibm.com  Thu Oct  7 10:47:38 1993
--* Received: from yktvmh.watson.ibm.com by radical.watson.ibm.com (AIX 3.2/UCB 5.64/900524)
--*           id AA57859; Thu, 7 Oct 1993 10:47:38 -0400
--* Received: from watson.vnet.ibm.com by yktvmh.watson.ibm.com (IBM VM SMTP V2R3)
--*    with BSMTP id 6597; Thu, 07 Oct 93 10:53:32 EDT
--* Received: from YKTVMH by watson.vnet.ibm.com with "VAGENT.V1.0"
--*           id <A.SMWATT.NOTE.VAGENT2.2329.Oct.07.10:53:31.-0400>
--*           for asbugs@watson; Thu, 07 Oct 93 10:53:32 -0400
--* Received: from YKTVMH by watson.vnet.ibm.com with "VAGENT.V1.0"
--*           id 2327; Thu, 7 Oct 1993 10:53:31 EDT
--* Received: from cyst.watson.ibm.com by yktvmh.watson.ibm.com (IBM VM SMTP V2R3)
--*    with TCP; Thu, 07 Oct 93 10:53:30 EDT
--* Received: from spadserv.watson.ibm.com by cyst.watson.ibm.com (AIX 3.2/UCB 5.64/900528)
--*   id AA65928; Thu, 7 Oct 1993 10:52:53 -0400
--* Received: by spadserv.watson.ibm.com (AIX 3.2/UCB 5.64/900524)
--*           id AA18689; Thu, 7 Oct 1993 10:59:35 -0400
--* Date: Thu, 7 Oct 1993 10:59:35 -0400
--* From: smwatt@spadserv.watson.ibm.com (Stephen Watt)
--* X-External-Networks: yes
--* Message-Id: <9310071459.AA18689@spadserv.watson.ibm.com>
--* To: asbugs@watson.ibm.com
--* Subject: Scobind incorrectly warns about reverse!: Local identifier is not assigned, defined, or used. [foo.as][v31.0]

--@ Fixed  by:  SSD   Thu Jun 2 12:06:20 EDT 1994 
--@ Tested by:  none 
--@ Summary:    scobind needs to propagate use information out to where the declaration is recorded. 


#include "aslib.as"

local reverse!: List(Integer)  -> List(Integer)

f(): () ==
	reverse!( nil$List(Integer))
 
