This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/27094] [4.0/4.1/4.2 Regression] tree check: expected tree_list, have omp_return in build_call



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-04-10 16:22 -------
Here is another testcase (which was reduced from the same source and gives a
similar error message but does not have inheritance in it):
template<typename _Tp> struct allocator
{
    ~allocator() throw() { }
};
struct list
{
    allocator<int> _M_impl;
};
template <int>
struct stack {
  stack(const list& __c = list());
};
stack <1> a;


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  GCC build triplet|x86_64-linux-gnu            |
   GCC host triplet|x86_64-linux-gnu            |
 GCC target triplet|x86_64-linux-gnu            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27094


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]