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

Daniel Krügler <daniel.kruegler at googlemail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel.kruegler at
                   |                            |googlemail dot com

--- Comment #1 from Daniel Krügler <daniel.kruegler at googlemail dot com> 
2012-11-14 14:43:03 UTC ---
Reducing:

//----------------------
struct foo {
  foo(int a, float b);
};

struct bar : foo {
  template<typename... Args>
  bar(Args&&... args) : foo(2, args){}
};

bar b(2,1.);
//----------------------

gives me

"7|internal compiler error: in expand_aggr_init_1, at cp/init.c:1718|"

for gcc 4.8.0 20121104 (experimental)

using flags

-std=c++11 -pedantic -Wall

Reply via email to