view gcc/testsuite/g++.dg/init/aggr14.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 2b5abeee2509
children
line wrap: on
line source

// PR c++/93790 - wrong paren-init of aggregates interference.
// { dg-do compile }

struct S {};
class S_refwrap {
    S& Sref_;
public:
    S_refwrap(S& Sref) : Sref_(Sref) {}
    operator S&() { return Sref_; }
};

S s;
S_refwrap r(s);
S& s2(r);