]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/lookup17.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup17.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup17.C b/gcc/testsuite/g++.old-deja/g++.other/lookup17.C
deleted file mode 100644 (file)
index 6a7510a..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Bug: t->B is resolved to the type instead of the field.
-
-struct A {
-  struct B { } *B;
-  int i, j, k, l, m;
-};
-
-struct A a;
-
-int
-main ()
-{
-  void *p = a.B;
-}