921e5a0eb4
From-SVN: r14840
13 lines
294 B
C
13 lines
294 B
C
// Build don't link:
|
|
// GROUPS passed conversions
|
|
// cvt file
|
|
// From: dak@pool.informatik.rwth-aachen.de
|
|
// Date: Sun, 21 Nov 93 17:40:32 +0100
|
|
// Subject: g++ mixes up array dimensions with new
|
|
// Message-ID: <9311211640.AA11787@messua>
|
|
|
|
main()
|
|
{
|
|
int (*a)[5] = new int[6][5];
|
|
}
|