Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: philodej at gmail dot com
Target Milestone: ---
See a minimal example in compiler explorer (including the comments):
- https://godbolt.org/z/b3WdfrKMY
The
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: philodej at gmail dot com
Target Milestone: ---
The following simple code snippet compiles as expected on clang, msvc and icc,
but fails to compile on
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: philodej at gmail dot com
Target Milestone: ---
Hi!
The following code terminates on g++ 5.2.1, 4.9.3 and 4.8.4:
namespace {
struct IFoo { virtual void foo() = 0; };
struct IBar { virtual void bar() = 0; };
struct