re PR c++/4933 (tree_list not supported by dump_expr)

2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>

        PR c++/4933
        * g++.dg/template/sizeof4.C: New test.

From-SVN: r68732
This commit is contained in:
Giovanni Bajo 2003-06-30 21:21:25 +02:00 committed by Wolfgang Bangerth
parent 27758dc09f
commit c85e18ee68
2 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-06-30 Giovanni Bajo <giovannibajo@libero.it>
PR c++/4933
* g++.dg/template/sizeof4.C: New test.
2003-06-30 Giovanni Bajo <giovannibajo@libero.it>
* g++.dg/other/error6.C: New test.

View File

@ -0,0 +1,18 @@
// { dg-do compile }
// Origin: <anthwil at nortelnetworks dot com>
// c++/4933: using sizeof with comma operator as template argument
template<unsigned F>
struct Foo {};
template<typename T>
T makeT();
template<typename T,typename U>
struct Bar
{
typedef Foo
<
sizeof((makeT<T>(), makeT<U>()))
> Type;
};