http://llvm.org/bugs/show_bug.cgi?id=21289

Richard Smith <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Richard Smith <[email protected]> ---
OK, entertainingly the remaining issue root-causes to a bug in the C++
standard. Your type

  using tuple = std::tuple<fixed<size_type>::type<Args>..., size_type>;

is technically not considered a dependent type, even though it obviously
depends on the length of the pack 'Args'.

Fixed in r220088, and I've filed a defect report against the standard.

With clang trunk, your testcase builds and produces this output:

0
0
0
0
0
0

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to