]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/init14.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init14.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/init14.C b/gcc/testsuite/g++.old-deja/g++.other/init14.C
deleted file mode 100644 (file)
index 8c866d7..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Build don't link:
-// Origin: bkoz@nabi.net
-
-typedef struct
-{
-  int count;
-} mbstate_t;
-
-struct fpos
-{
-  mbstate_t  _M_st;
-  fpos(int __pos)
-    : _M_st() { 
-  }
-};
-
-int main ()
-{
-  fpos f (2);
-}
-
-