new
authorJason Merrill <jason@gcc.gnu.org>
Fri, 7 Jan 2000 00:06:44 +0000 (19:06 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 7 Jan 2000 00:06:44 +0000 (19:06 -0500)
From-SVN: r31263

gcc/testsuite/g++.old-deja/g++.other/lookup17.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup17.C b/gcc/testsuite/g++.old-deja/g++.other/lookup17.C
new file mode 100644 (file)
index 0000000..a367413
--- /dev/null
@@ -0,0 +1,13 @@
+struct A {
+  struct B { } *B;
+  int i, j, k, l, m;
+};
+
+struct A *t;
+
+int
+main ()
+{
+  void *p = t
+    ->B;
+}