]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/static-mem5.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / static-mem5.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/static-mem5.C b/gcc/testsuite/g++.old-deja/g++.law/static-mem5.C
deleted file mode 100644 (file)
index 2ce0df1..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// Build don't link: 
-// Special g++ Options: -w
-// GROUPS passed static-mem
-// static-mem file
-// From: bunch@tazboy.jpl.nasa.gov (Walt Bunch)
-// Date:     Thu, 23 Jun 94 14:58:35 UNI
-// Subject:  bug report
-// Message-ID: <9406232258.AA03897@tazboy.JPL.NASA.GOV>
-
-
-class A
-{
-public:
-  static void F (int i) {}
-  static void A::G (int i) {}
-};
-
-main ()
-{
-  A::F (17);
-  A::G (42);
-}
-