]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ext/memconst.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / memconst.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/memconst.C b/gcc/testsuite/g++.old-deja/g++.ext/memconst.C
deleted file mode 100644 (file)
index deb832f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// From: Ove.Ewerlid@syscon.uu.se (Ove Ewerlid)
-// Subject: ss-940630:cc1plus: internal error
-// Date: Sat, 2 Jul 1994 05:07:20 +0200
-// Special g++ Options:
-// Build don't link:
-
-class qwerty {
-public:
-    qwerty (const unsigned short userkey[8]);
-   ~qwerty ();
-};
-
-class foo {
-private:
-  static const unsigned char * const dummy_key = (unsigned char*)"ThisIs a dummy!"; // ERROR - 
-
-public:
-    void bar ();
-};
-
-void
-foo::bar ()
-{
-  qwerty QWERTY ((unsigned short*)dummy_key); // ERROR - 
-}