public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/64679] New: Spurious redefinition error when parsing not-quite-most-vexing-parse declarations
@ 2015-01-20  1:30 rs2740 at gmail dot com
  2022-04-29 19:06 ` [Bug c++/64679] " mpolacek at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: rs2740 at gmail dot com @ 2015-01-20  1:30 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 64679
           Summary: Spurious redefinition error when parsing
                    not-quite-most-vexing-parse declarations
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rs2740 at gmail dot com

Repro:

class Bar{
public:
  Bar(int, int, int);
};

int main () {
  int x = 1;
  Bar bar(int(x), int(x), int{x});
}

gcc HEAD 5.0.0 20150119 (experimental) with g++ prog.cc -Wall -Wextra
-std=gnu++1y reports:

prog.cc: In function 'int main()':
prog.cc:8:24: error: redefinition of 'int x'
  Bar bar(int(x), int(x), int{x});
                       ^
prog.cc:8:16: note: 'int x' previously declared here
  Bar bar(int(x), int(x), int{x});

With the last int{x} (note the braces) this cannot be a function declaration,
but g++ appears to emit the redefinition errors too early, before the full
declaration is parsed. Clang compiles this successfully.


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

end of thread, other threads:[~2022-05-05 21:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-20  1:30 [Bug c++/64679] New: Spurious redefinition error when parsing not-quite-most-vexing-parse declarations rs2740 at gmail dot com
2022-04-29 19:06 ` [Bug c++/64679] " mpolacek at gcc dot gnu.org
2022-05-04 20:06 ` cvs-commit at gcc dot gnu.org
2022-05-05 21:34 ` cvs-commit at gcc dot gnu.org
2022-05-05 21:37 ` mpolacek 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).