Let's say we have class X with defined constructor X(int value).
Is this semantically equivalent or not?
X x = 42;
X x(42);
I believe the difference will appear only if we add explicit keyword to constructor of X.
Otherwise compiler will reduce expression X x = 42; to X x(42);
Please, correct me if I'm wrong.