-
Notifications
You must be signed in to change notification settings - Fork 830
Closed
Labels
Area-LangService-CodeFixesCode fixes associated with diagnosticsCode fixes associated with diagnosticsBugImpact-Medium(Internal MS Team use only) Describes an issue with moderate impact on existing code.(Internal MS Team use only) Describes an issue with moderate impact on existing code.
Milestone
Description
Repro steps
// SomeModule.fs
namespace SomeNamespace
module SomeModule =
let someFunction () = ()
// Program.fs
module Program
[<EntryPoint>]
let main argv =
someFunction()
0
Invoke the first QuickAction on someFunction()

Expected behavior
Adds open SomeNamespace.SomeModule or otherwise fixes the code in a way that makes it compile
Actual behavior
Adds open SomeNamespace. The code still does not compile.
VS 2017 15.5.4
Visual F# Tools 15.4.1.18011902
GennadyGS
Metadata
Metadata
Assignees
Labels
Area-LangService-CodeFixesCode fixes associated with diagnosticsCode fixes associated with diagnosticsBugImpact-Medium(Internal MS Team use only) Describes an issue with moderate impact on existing code.(Internal MS Team use only) Describes an issue with moderate impact on existing code.
Type
Projects
Status
Done