Commit c85e18ee by Giovanni Bajo Committed by Wolfgang Bangerth

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
parent 27758dc0
2003-06-30 Giovanni Bajo <giovannibajo@libero.it> 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. * g++.dg/other/error6.C: New test.
2003-06-30 Giovanni Bajo <giovannibajo@libero.it> 2003-06-30 Giovanni Bajo <giovannibajo@libero.it>
......
// { 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;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment