Language
C++
Compiler
gcc HEAD 14.0.0 20231230 (experimental)
Options
Warnings
Don't Use Boost
C++2b(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -std=gnu++2b
P p{1, 2., "3"}
Constructor: P(int i, double j, string k)
i=1 j=2 k=3
P p2 = {4, "5"}
Constructor: P(int i, string k)
i=4 j=1.1 k=5
Exit Code:
0