We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
File1.fs
module File1 module SubModule = let Foo = 3
Program.fs
[<EntryPoint>] let main argv = let a = Foo 0
Use suggestion to add open declaration on Foo.
Suggests open File1.SubModule
open File1.SubModule
Suggests open File1 This does not fix the issue and the code still doesn't compile.
open File1
Visual Studio 16.0.2 Visual F# Tools 10.4 for F# 4.6 - 16.0.0.0
The text was updated successfully, but these errors were encountered:
Duplicate of #4223
Sorry, something went wrong.
No branches or pull requests
Repro steps
File1.fs
Program.fs
Use suggestion to add open declaration on Foo.

Expected behavior
Suggests
open File1.SubModule
Actual behavior
Suggests
open File1
This does not fix the issue and the code still doesn't compile.
Related information
Visual Studio 16.0.2
Visual F# Tools 10.4 for F# 4.6 - 16.0.0.0
The text was updated successfully, but these errors were encountered: