public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65790] compilation error : receive std::index_sequnece
Date: Fri, 17 Apr 2015 08:09:00 -0000	[thread overview]
Message-ID: <bug-65790-4-LDNZWux9oC@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-65790-4@http.gcc.gnu.org/bugzilla/>

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |rejects-valid
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-04-17
     Ever confirmed|0                           |1
      Known to fail|                            |4.8.3, 4.9.2, 5.0, 6.0

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Confirmed, Clang and EDG accept this:

extern "C" int printf(const char* ...);

namespace std
{
  typedef decltype(sizeof(0)) size_t;

  template<typename _Tp, _Tp... _Idx>
    struct integer_sequence
    {
      typedef _Tp value_type;
      static constexpr size_t size() { return sizeof...(_Idx); }
    };

  template<size_t... _Idx>
    using index_sequence = integer_sequence<size_t, _Idx...>;
}

void g(std::size_t a, std::size_t b, std::size_t c)
{
  printf("%zu, %zu, %zu\n", a, b, c);
}

template <std::size_t... Seq>
void f(std::index_sequence<Seq...>)
{
  g(Seq...);
}

int main()
{
  f(std::index_sequence<0, 1, 2>());
}


  reply	other threads:[~2015-04-17  8:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-17  5:58 [Bug c++/65790] New: compilation error std::index_sequnece faithandbrave at gmail dot com
2015-04-17  8:09 ` redi at gcc dot gnu.org [this message]
2015-07-09  9:43 ` [Bug c++/65790] compilation error : receive std::index_sequence paolo.carlini at oracle dot com
2015-07-09  9:51 ` paolo at gcc dot gnu.org
2015-07-09  9:52 ` paolo.carlini at oracle dot com
2015-07-09 14:21 ` faithandbrave at gmail dot com

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-65790-4-LDNZWux9oC@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).