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

           Summary: [C++0x][SFINAE] Hard errors with arrays of unknown
                    bound
           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


The following program should be well-formed, but is not:

template<class T,
  class = decltype(T())
>
char f(int);

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

static_assert(sizeof(f<int[]>(0)) != 1, "Error"); 

"cannot value-initialize array of unknown bound ‘int []’"

Reply via email to