]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/friend6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / friend6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/friend6.C b/gcc/testsuite/g++.old-deja/g++.other/friend6.C
deleted file mode 100644 (file)
index 1bc6119..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Origin: Martin v. Löwis  <loewis@informatik.hu-berlin.de>
-// Test for resolution of core issue 125.
-// Build don't link:
-
-struct A{
-  struct B{};
-};
-
-A::B C();
-
-namespace B{
-  A C();
-}
-
-class Test{
-  friend A (::B::C)();  // Ok
-  friend A::B (::C)();  // Ok
-  friend A::B::C();     // ERROR - no A::B::C
-};