Language
C++
Compiler
clang HEAD 8.0.0 (https://github.com/llvm-mirror/clang.git b4ac732910ee32d004284aaa0632e5bb2fecc5fd) (https://github.com/llvm-mirror/llvm.git 1011e428fd0908dbabe4c6387ef65ba1f92c39a2)
Options
Warnings
Don't Use Boost
C++14
no pedantic
Raw compiler options
-fno-elide-constructors
$ clang++ prog.cc -Wall -Wextra -std=c++14 -fno-elide-constructors
[0x7ffd8dd768c0] constructor
assigning rvalue...
[0x7ffd8dd76890] constructor
[0x7ffd8dd768a0] copy constructor
[0x7ffd8dd768c0] copy assignment operator
[0x7ffd8dd768a0] destructor
[0x7ffd8dd76890] destructor
ended assigning rvalue...
[0x7ffd8dd768c0] destructor
Exit Code:
0