[sv-ec] New errata - missing semicolon in 11.24


Subject: [sv-ec] New errata - missing semicolon in 11.24
From: Dave Rich (David.Rich@synopsys.com)
Date: Sat Nov 15 2003 - 13:50:07 PST


REPLACE missing semicolon in the example in section 11.24

typedef class C2; // C2 is declared to be of type class
class C1
C2 c;
endclass
class C2
C1 c;
endclass

WITH

typedef class C2; // C2 is declared to be of type class
class C1;
	C2 c;
endclass
class C2;
	C1 c;
endclass
-- 
--
David.Rich@Synopsys.com
Technical Marketing Consultant
http://www.SystemVerilog.org
tele:  650-584-4026
cell:  510-589-2625



This archive was generated by hypermail 2b28 : Sat Nov 15 2003 - 13:50:58 PST