blob: e8fa80ca9f4485b651416a14720ddd9c54e9b135 [file] [log] [blame]
// Build don't link:
// GROUPS passed nest
// nest file
// From: gs4t@virginia.edu (Gnanasekaran Swaminathan)
// Date: Wed, 30 Dec 1992 20:38:07 GMT
// Subject: Local type names bug in g++ 2.3.3
// Message-ID: <1992Dec30.203807.17504@murdoch.acc.Virginia.EDU>
typedef char* T; // ERROR - previous declaration
struct Y {
T a;
typedef long T; // error. See ARM p189-191 for details// ERROR -
T b;
};