X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.mike%2Fnet4.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.mike%2Fnet4.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=4cf8e7a1387f54e6c9a8020ddf954ed5b2c94996;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.mike/net4.C b/gcc/testsuite/g++.old-deja/g++.mike/net4.C deleted file mode 100644 index 4cf8e7a1..00000000 --- a/gcc/testsuite/g++.old-deja/g++.mike/net4.C +++ /dev/null @@ -1,32 +0,0 @@ -// Message-Id: -// Date: Wed, 4 Mar 92 12:50 MET -// From: niklas@appli.se (Niklas Hallqvist) -// To: eichin@cygnus.com, tiemann@cygnus.com -// Cc: gcc2@cygnus.com -// Subject: nested type handling -// -// The last couple of days I've been struggling with nested types in the -// C++ compiler. Frankly, it's a mess! Was it impossible to put the stuff -// into the parser instead of the lexer? Well, anyway, to get the following -// code to compile: -// -// struct O { -// struct M { -// struct I -// {}; -// }; -// }; -// O::M::I s; -// -// a patch enclosed below is needed. I'm not sure if it causes any -// unanticipated side-effects, but it seem to work well for me. - -// Build don't link: - -struct O { - struct M { - struct I - {}; - }; -}; -O::M::I s;