]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/ptrmem2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / ptrmem2.C
diff --git a/gcc/testsuite/g++.dg/other/ptrmem2.C b/gcc/testsuite/g++.dg/other/ptrmem2.C
deleted file mode 100644 (file)
index ec451be..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-// { dg-do compile }
-
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 31 Dec 2001 <nathan@codesourcery.com>
-
-// PR 4379. We created pointers to member references and pointers to
-// member fields when we shouldn't have.
-
-struct D {
-  
-  int &m;   // { dg-error "member `D::m' is non-static" "" }
-  static int &s;
-  
-  int Foo ();
-};
-
-template<class T> int f1(T x);
-template<class T> int f2(T x);
-
-int D::Foo ()
-{
-  f1( &D::m);   // { dg-error "cannot create pointer to ref" "" }
-  f1( &(D::m));        // ok
-  f2( &D::s);   // ok
-  f2( &(D::s)); // ok
-  return 0;
-}
-
-int Foo ()
-{
-  f1( &D::m);    // { dg-error "cannot create pointer to ref" "" }
-  f1( &(D::m));  // { dg-error "at this point" "" }
-  f2( &D::s);    // ok
-  f2( &(D::s));  // ok
-  return 0;
-}