public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/65970] New: [C++14] Endless loop with constexpr
@ 2015-05-01 19:39 reichelt at gcc dot gnu.org
  2015-08-29 16:35 ` [Bug c++/65970] " trippels at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: reichelt at gcc dot gnu.org @ 2015-05-01 19:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65970

            Bug ID: 65970
           Summary: [C++14] Endless loop with constexpr
           Product: gcc
           Version: 5.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: reichelt at gcc dot gnu.org
  Target Milestone: ---

The compiler loops forever when compiling the following invalid testcase with
-std=c++14:

========================
constexpr int foo()
{
  while (true) x;
  return 0;
}

int i = foo();
========================

At least it gives an error before it hangs:

bug.cc: In function 'constexpr int foo()':
bug.cc:3:16: error: 'x' was not declared in this scope
   while (true) x;


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-08-29 16:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-01 19:39 [Bug c++/65970] New: [C++14] Endless loop with constexpr reichelt at gcc dot gnu.org
2015-08-29 16:35 ` [Bug c++/65970] " trippels at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).