We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get an error when writing the following definition
julia> immutable MyMatrix{T,S<:AbstractMatrix{T}} <: AbstractMatrix{T} A::S B::Vector{T} end ERROR: T not defined
but the type seems well defined because
A=MyMatrix{Float64,Matrix{Float64}}(randn(2,2),randn(2));
works just fine.
The text was updated successfully, but these errors were encountered:
This is actually a missing feature. Dup of #3766
Sorry, something went wrong.
No branches or pull requests
I get an error when writing the following definition
but the type seems well defined because
works just fine.
The text was updated successfully, but these errors were encountered: