]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.gb/scope11.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.gb / scope11.C
diff --git a/gcc/testsuite/g++.old-deja/g++.gb/scope11.C b/gcc/testsuite/g++.old-deja/g++.gb/scope11.C
deleted file mode 100644 (file)
index 19229df..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Build don't link: 
-// GROUPS passed gb scope
-template<class T, int N> class fixed_array {
-public:
-  T _array[N];
-};
-
-class Hash {
-public:
-  Hash (int);
-};
-
-typedef fixed_array<char, 4> ipAddress_t;
-
-class IPAddress {
-protected:
-  long _i;
-public:
-  IPAddress (ipAddress_t ip) { }
-  IPAddress () { }
-  IPAddress netMask () { return *this; }
-  operator Hash ();
-};
-
-IPAddress::operator Hash ()
-{
-  return Hash (_i);
-}