Language
C++
Compiler
gcc HEAD 11.0.1 20210320 (experimental)
Options
Warnings
Don't Use Boost
C++2b
no pedantic
$ g++ prog.cc -Wall -Wextra -std=c++2b
Exit Code:
1
Author
anonymous
about 4 years ago
C++
gcc HEAD 11.0.1 20210320 (experimental)
Author
anonymous
about 4 years ago
$ g++ prog.cc -Wall -Wextra -std=c++2b
prog.cc:8:16: error: use of deleted function 'V< <template-parameter-1-1> >::V() [with <template-parameter-1-1> = U<S<0>{}>]'
8 | V<U<S<0>{}>> v{};
| ^
prog.cc:3:31: note: declared here
3 | template<typename> struct V { V() = delete; };
| ^