Mutable use binding compiles
Open
Area-Compiler-Checking
Feature Improvement
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 11h
- Merged PRs (30d)
- 131
Description
```fsharp
open System.Drawing
let f() =
use mutable font = new Font("Arial", 10.0f)
font <- new Font("Arial", 11.0f)
f()
```
The above code compiles. Note that in C# it is not:

Using latest Mono and FCS from Ionide
Contributor guide
Assessment
This issue has not been assessed yet.