]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/pod1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / pod1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/pod1.C b/gcc/testsuite/g++.old-deja/g++.other/pod1.C
deleted file mode 100644 (file)
index c6faf0d..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 28 Feb 2001 <nathan@codesourcery.com>
-
-// DR 148. Now allows pointer to members in POD struct.
-
-struct X
-{
-  int X::*m;
-  int (X::*f) ();
-};
-
-void Foo (int, ...);
-
-void Baz ()
-{
-  X x;
-  
-  Foo (1, x);
-}