This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/9187] [3.4] Duplicate warning about a missing "typename"
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 23 Sep 2003 17:56:10 -0000
- Subject: [Bug c++/9187] [3.4] Duplicate warning about a missing "typename"
- References: <20030106064602.9187.bangerth@ticam.utexas.edu>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9187
------- Additional Comments From pinskia at gcc dot gnu dot org 2003-09-23 17:56 -------
Here is a smaller testcase:
template <int dim> struct O {
struct I {};
};
template <int dim> void f() {
O<dim>::I;
};