Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

8 months ago

Language

C++

Compiler

clang HEAD 20.0.0git (https://github.com/llvm/llvm-project.git f7b6dc821ad2aa02e027db76f193b85a87443e0b)

Options
Warnings
Optimization
Don't Use Boost
C++2b
no pedantic

Author

anonymous

8 months ago

$ clang++ prog.cc -Wall -Wextra -O2 -march=native -std=c++2b
prog.cc:11:10: error: call to deleted constructor of 'Data'
   11 |     Data d{std::min({42, 52})};
      |          ^~~~~~~~~~~~~~~~~~~~~
prog.cc:6:14: note: 'Data' has been explicitly marked deleted here
    6 |     explicit Data(int && i) = delete;
      |              ^
1 error generated.
Exit Code:
1