Language
C++
Compiler
gcc 8.1.0
Options
Warnings
Don't Use Boost
C++17
-pedantic
$ g++ prog.cc -Wall -Wextra -std=c++17 -pedantic
Exit Code:
1
Author
anonymous
over 6 years ago
C++
gcc 8.1.0
Author
anonymous
over 6 years ago
$ g++ prog.cc -Wall -Wextra -std=c++17 -pedantic
prog.cc: In instantiation of 'class Outer<void>::Failure<Cls>':
prog.cc:15:18: required from here
prog.cc:5:33: error: template parameter 'template<class> template<class> class<template-parameter-2-1>'
template <template <typename> class>
^~~~~
prog.cc:8:18: error: redeclared here as 'template<class> class<template-parameter-1-1>'
friend class Failure;
^~~~~~~
prog.cc: In function 'int main()':
prog.cc:15:18: warning: unused variable 'var' [-Wunused-variable]
Outer<void>::F var;
^~~