Language
C++
Compiler
gcc HEAD 15.0.1 20250312 (experimental)
Options
Warnings
Don't Use Boost
C++2b(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -std=gnu++2b
smartptr<person> a(new person{"Khrisha",6})
name = Khrisha
age = 6
~person() called
smartptr<person[]> y(new person[]{{"Khrisha",6}}
name = Khrisha
age = 6
~person() called
Exit Code:
0