]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/typeck3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / typeck3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/typeck3.C b/gcc/testsuite/g++.old-deja/g++.law/typeck3.C
deleted file mode 100644 (file)
index 76c3684..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// Build don't link: 
-// GROUPS passed typeck
-// typeck file
-// From: Dror Caspi <dror@fibronics.co.il>
-// Date:     Wed, 9 Jun 1993 17:43:48 +0300
-// Subject:  function typedefs in classes
-// Message-ID: <199306091443.AA03735@zorba.fibronics.co.il>
-
-class a
-{
- public:
-   typedef void (X)();
-
-   X x;   // Member function of type X
-};
-
-class b
-{
- public:
-   typedef void (X)();   //!!!!!! g++ says : syntax error before `;'
-
-   X x;   // Member function of type X
-};