]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/inline23.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / inline23.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/inline23.C b/gcc/testsuite/g++.old-deja/g++.other/inline23.C
deleted file mode 100644 (file)
index 3a323e0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Build don't run:
-
-struct B
-{
-  virtual ~B() {}
-};
-
-struct A : public B
-{
-  ~A();
-  void foo(void);
-  void bar(void);
-};
-
-inline void A::foo(void)
-{
-  static int i;
-  i++;
-}
-
-void A::bar()
-{
-  foo();
-}
-
-int main()
-{
-}