Language
C++
Compiler
gcc HEAD 15.0.0 20240523 (experimental)
Options
Warnings
Don't Use Boost
C++2b(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -std=gnu++2b
Exit Code:
1
C++
gcc HEAD 15.0.0 20240523 (experimental)
$ g++ prog.cc -Wall -Wextra -std=gnu++2b
prog.cc: In function 'int main()':
prog.cc:25:13: error: use of deleted function 'void person::update(bool)'
25 | p.update(true); //error function deleted
| ~~~~~~~~^~~~~~
prog.cc:11:10: note: declared here
11 | void update (bool age)=delete;
| ^~~~~~
prog.cc:25:13: note: use '-fdiagnostics-all-candidates' to display considered candidates
25 | p.update(true); //error function deleted
| ~~~~~~~~^~~~~~