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

fix 21756 - make cast(immutable)arrayLiteral @nogc #12329

Closed
wants to merge 1 commit into from
Closed

fix 21756 - make cast(immutable)arrayLiteral @nogc #12329

wants to merge 1 commit into from

Commits on Mar 31, 2021

  1. fix 21756 - make cast(immutable)arrayLiteral @nogc

    adjust array literal semantics so that
    
    ```d
    cast(immutable) <arrayLiteral>
    ```
    
    get rewritten to a DeclExp comma VarExp
    
    ```d
    (static immutable __array = <arrayLiteral>, __array)
    ```
    
    allowing immutable array literals to be `@nogc`
    Basile Burg committed Mar 31, 2021
    Configuration menu
    Copy the full SHA
    3402efd View commit details
    Browse the repository at this point in the history