public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/47851] New: [4.6 Regression] [C++0x] Incorrect decltype result for conditional operator
@ 2011-02-22 18:31 mimomorin at gmail dot com
  2011-02-22 19:17 ` [Bug c++/47851] " paolo.carlini at oracle dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: mimomorin at gmail dot com @ 2011-02-22 18:31 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47851

           Summary: [4.6 Regression] [C++0x] Incorrect decltype result for
                    conditional operator
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: mimomorin@gmail.com


Created attachment 23436
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=23436
Test case

Suppose we have a code

    struct Type {};

    typedef Type const ConstType;

    struct ConvertibleToType {
        operator Type&() { return *reinterpret_cast<Type*>(this); }
    };

Then expression `true ? ConvertibleToType() : ConstType()` has type `Type`.
But `decltype(true ? ConvertibleToType() : ConstType())` is `Type const`.

Note that, in gcc 4.5, both the type of the expression and its `decltype` are
`Type`.
(In clang TOT, both are `Type const`.)


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

end of thread, other threads:[~2011-03-01 23:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-22 18:31 [Bug c++/47851] New: [4.6 Regression] [C++0x] Incorrect decltype result for conditional operator mimomorin at gmail dot com
2011-02-22 19:17 ` [Bug c++/47851] " paolo.carlini at oracle dot com
2011-03-01 22:44 ` jason at gcc dot gnu.org
2011-03-01 22:48 ` jason at gcc dot gnu.org
2011-03-01 23:29 ` paolo.carlini at oracle dot com

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).