Language
C++
Compiler
gcc HEAD 11.0.1 20210322 (experimental)
Options
Warnings
Don't Use Boost
C++11
no pedantic
$ g++ prog.cc -Wall -Wextra -std=c++11
Exit Code:
0
Author
anonymous
about 4 years ago
C++
gcc HEAD 11.0.1 20210322 (experimental)
Author
anonymous
about 4 years ago
$ g++ prog.cc -Wall -Wextra -std=c++11
prog.cc: In function 'int main()':
prog.cc:2:9: warning: unused variable 'array' [-Wunused-variable]
2 | int *array { new (int [3]){0, 1, 2} };
| ^~~~~
prog.cc:3:9: warning: unused variable 'array2' [-Wunused-variable]
3 | int *array2 { new (int []){0, 1, 2} };
| ^~~~~~