You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First part #18861
* In `3.4` we emit the deprecation warning
* In `future` we emit we make this syntax an error
* Add patch. Not ideal because we need to use the full path of
`uninitialized`
```scala
//> using options -source future
var x: Int = _ // error
```
```diff
//> using options -rewrite -source 3.4-migration
- var x: Int = _
+ var x: Int = scala.compiletime.uninitialized
```
Warn in: 3.4
Error in: TBD
The text was updated successfully, but these errors were encountered: