c-semantics icon indicating copy to clipboard operation
c-semantics copied to clipboard

Conversions by constructor

Open h0nzZik opened this issue 6 years ago • 0 comments

e.g. the following program should compile

struct A{
  A(int){}
};
void foo(A){}
int main() {
	foo(1);
}

The following applies: n4296 8.5/17.6.2 n4296 13.3.1.4

h0nzZik avatar Jun 19 '19 13:06 h0nzZik