Language
C++
Compiler
gcc 13.2.0
Options
Warnings
Boost 1.83.0
C++2b(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.83.0-gcc-13.2.0/include -std=gnu++2b
Exit Code:
1
Author
anonymous
5 months ago
C++
gcc 13.2.0
Author
anonymous
5 months ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.83.0-gcc-13.2.0/include -std=gnu++2b
prog.cc: In function 'int main()':
prog.cc:8:17: error: invalid conversion from 'int*' to 'int' [-fpermissive]
8 | int& refp = p;
| ^
| |
| int*
prog.cc:8:17: error: cannot bind rvalue '(int)p' to 'int&'