Skip to content
New issue

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

Do not promote to Any #27

Merged
merged 2 commits into from May 15, 2020
Merged

Do not promote to Any #27

merged 2 commits into from May 15, 2020

Commits on May 15, 2020

  1. Do not promote to Any

    Before:
    
        julia> push!!([Init(+)], 0)
        2-element Array{Any,1}:
          Init(+)
         0
    
    After:
    
        julia> push!!([Init(+)], 0)
        2-element Array{Union{InitialValues.InitialValueOf{typeof(+)}, Int64},1}:
          Init(+)
         0
    tkf committed May 15, 2020
    Configuration menu
    Copy the full SHA
    6ff8816 View commit details
    Browse the repository at this point in the history
  2. Skip ambiguity tests on Julia 1.0

    tkf committed May 15, 2020
    Configuration menu
    Copy the full SHA
    115e29f View commit details
    Browse the repository at this point in the history