PR c++/65339
* call.c: Don't call maybe_resolve_dummy when calling a constructor.
From-SVN: r221285
+2015-03-09 Jason Merrill <jason@redhat.com>
+
+ PR c++/65339
+ * call.c: Don't call maybe_resolve_dummy when calling a constructor.
+
2015-03-09 Jakub Jelinek <jakub@redhat.com>
PR c/65120
that would be captured if the call turns out to be to a
non-static member function. Do not actually capture it at this
point. */
- first_mem_arg = maybe_resolve_dummy (instance, false);
+ if (DECL_CONSTRUCTOR_P (fn))
+ /* Constructors don't use the enclosing 'this'. */
+ first_mem_arg = instance;
+ else
+ first_mem_arg = maybe_resolve_dummy (instance, false);
/* Get the high-water mark for the CONVERSION_OBSTACK. */
p = conversion_obstack_alloc (0);
--- /dev/null
+// PR c++/65339
+// { dg-do compile { target c++11 } }
+
+class FuncWrapper {
+public:
+ template <typename Func> void callfunc(Func f)
+ {
+ f();
+ }
+};
+
+class Object {
+ int field;
+public:
+ void Method();
+ Object() { field = 555; }
+ Object(const Object&) { __builtin_abort(); }
+};
+
+void Object::Method ()
+{
+ FuncWrapper wrap;
+ wrap.callfunc(*[]()
+ {
+ return Object();
+ });
+}