fsharp
fsharp copied to clipboard
The F# compiler, F# core library, F# language service, and F# tooling integration for Visual Studio
In the script files, the following code is analysed in the editor without any errors ```F# module A let x = 3 ``` but if you send this code to...
 Microsoft Visual Studio Enterprise 2022 Version 17.11.0 Preview 1.0 [34801.192.main] VisualStudio.17.**IntPreview**/17.11.0-pre.1.0+34801.192.main Visual F# Tools 17.10.0-**dev** Microsoft Visual F# Tools The screenshot above was done custom-built .vsix for the nullness...
Please provide a succinct description of the issue. Using the [transparent compiler in FSAC](https://github.com/ionide/FsAutoComplete/pull/1240), I've noticed large memory usage. After doing some investigation with dotnet-dump and dotmemory I've found two...
When a project has two types with the same name in the same namespace defined in two separate files, and the second of the two definitions is referenced in another...
Hi, I am getting a strange `TypeLoadException` in my code when I am trying to create a delegate that contains a `voidptr`, but only when I return it. ```` System.TypeLoadException:...
This one is a bit weird, and I don't know if this is the right place for it. If you define two interfaces that implement a common, third interface, the...
An Attribute defined in a rec module can't be used in the same rec module. #### Repro steps ```fsharp module rec M type CustomAttribute () = inherit System.Attribute () type...
```fsharp open System.Drawing let f() = use mutable font = new Font("Arial", 10.0f) font
 ```fsharp #nowarn "9" open System type TestCaseBuilder() = member __.Using(disposable: IDisposable, f) = try f disposable finally match disposable with | null -> () | disp -> disp.Dispose() member...
A private type extension `type private X with` inside a module will be in scope after the module is opened. #### Repro steps ```fsharp module Test module Inner = type...