Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!eecae!netnews.upenn.edu!rutgers!bellcore!faline!thumper!ulysses!andante!alice!ark From: ark@alice.UUCP (Andrew Koenig) Newsgroups: comp.lang.c++ Subject: Re: typdef int *(il[8][8]); Message-ID: <8901@alice.UUCP> Date: 11 Feb 89 14:40:06 GMT References: Distribution: comp Organization: AT&T Bell Laboratories, Liberty Corner NJ Lines: 13 C++ generally does not allow extra parentheses in declarations. Since [] binds more tightly than unaries, typedef int *(il[8][8]); is equivalent to typedef int *il[8][8]; which I expect your cfront will accept. -- --Andrew Koenig ark@europa.att.com