This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/29518] incorrect "
- 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: 19 Oct 2006 21:27:19 -0000
- Subject: [Bug c++/29518] incorrect "
- References: <bug-29518-5078@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from pinskia at gcc dot gnu dot org 2006-10-19 21:27 -------
I tried a simple testcase and variations on it (changing (T)(ok) to just ok and
such):
template <bool a> class b{};
template <class T> class t
{
static bool const ok = true;
b<(T)(ok)> c;
};
int main(void)
{
t<int> a;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29518