This example used to work in julia 0.6.0 and 0.6.2 but now is broken by the commit [88a4db2](https://github.com/JuliaLang/julia/commit/88a4db258280af8b73329c78fcdefd3d8bb1b1cf#diff-3808d1caabac4e9d252e6bc1d264aeb1): ``` julia> (Tuple{Vector{T}, Vector{T}} where T) <: Tuple{T,T} where T false ``` Should be `true` because `Vector{T}` is concrete for any instantiation of `T`.