PR c++/8888:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / rtti1.cc
index de8e12fc8e44801b63ec7241d7b5da0608a59792..571d766b4675b63ae9ebe42f4b18d11d7752d826 100644 (file)
@@ -1,6 +1,6 @@
 /* Code to go along with tests in rtti.exp.
    
-   Copyright 2003, 2004 Free Software Foundation, Inc.
+   Copyright 2003-2004, 2007-2012 Free Software Foundation, Inc.
 
    Contributed by David Carlton <carlton@bactrian.org> and by Kealia,
    Inc.
@@ -9,18 +9,16 @@
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or (at
-   your option) any later version.
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
 
-   This program is distributed in the hope that it will be useful, but
-   WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   General Public License for more details.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "rtti.h"
 
@@ -63,16 +61,33 @@ void refer_to (n2::C2 *obj)
   // Do nothing.
 }
 
+void refer_to (n2::n3::C3 *obj)
+{
+  // Do nothing.
+}
+
 namespace n2
 {
   void func ()
   {
     C2 *obj = create2 ();
 
-    refer_to (obj);                    // func-constructs-done
+    refer_to (obj);            // func-constructs-done
 
     return;
   }
+
+  namespace n3
+  {
+    void func3 ()
+    {
+      C3 *obj3 = create3 ();
+
+      refer_to (obj3);         // func3-constructs-done
+
+      return;
+    }
+  }
 }
 
 int main()
@@ -84,6 +99,7 @@ int main()
     C2 *e2 = create2();
 
     n2::func();                                // main-constructs-done
+    n2::n3::func3();
 
     return 0;
 }
This page took 0.025008 seconds and 4 git commands to generate.