Backported from mainline
2018-11-19 Jakub Jelinek <jakub@redhat.com>
PR c++/60994
* g++.dg/lookup/pr60994.C: New test.
From-SVN: r275068
2019-08-30 Jakub Jelinek <jakub@redhat.com>
-
+
Backported from mainline
+ 2018-11-19 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/60994
+ * g++.dg/lookup/pr60994.C: New test.
+
2018-10-25 Jakub Jelinek <jakub@redhat.com>
PR fortran/87725
--- /dev/null
+// PR c++/60994
+// { dg-do compile }
+
+struct s
+{
+ static int i;
+};
+
+template <typename T>
+int s()
+{
+ return s::i; // { dg-bogus "is not a class" }
+}