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

Insert top level type variables before typing quote pattern #16883

Closed
wants to merge 1 commit into from

Commits on Feb 12, 2023

  1. Insert top level type variables before typing quote pattern

    ```scala
    case '{ type u; ($x: t, $y: t, $z: u) }
    ```
    is desugared to
    ```scala
    case '{ type t; type u; ($x: `t`, $y: `t`, $z: `u`) }
    ```
    
    Fixes scala#14708
    nicolasstucki committed Feb 12, 2023
    Configuration menu
    Copy the full SHA
    41a4277 View commit details
    Browse the repository at this point in the history