]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/copy3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / copy3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/copy3.C b/gcc/testsuite/g++.old-deja/g++.other/copy3.C
deleted file mode 100644 (file)
index aa2c905..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// Build don't run:
-// Origin: ericp@mit.edu
-
-class bar {
-};
-
-class foo {  
-  foo (const foo &f);
-
-public:
-  
-  foo (bar x) {}
-  foo () {}
-  
-  void test (const foo &f) {}
-};
-
-int main (void) {
-  foo f;
-  bar b;
-
-  f.test (b);
-}