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

           Summary: [C++0x][SFINAE] Hard errors with list-initialization
                    and void initializers
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassig...@gcc.gnu.org
        ReportedBy: daniel.krueg...@googlemail.com
                CC: ja...@redhat.com


gcc 4.7.0 20110422 (experimental) in C++0x mode rejects the following code
at the line marked with #:

//-------------------------
template<class T>
struct add_rval_ref {
  typedef T&& type;
};

template<>
struct add_rval_ref<void> {
  typedef void type;
};

template<class T>
typename add_rval_ref<T>::type create();

template<class T, class Arg>
decltype(T{create<Arg>()}, char()) f(int);

template<class, class>
char (&f(...))[2];

static_assert(sizeof(f<int, void>(0)) != 1, "Error"); // #
//-------------------------

"error: void value not ignored as it ought to be"

The code should be accepted.

Reply via email to