Created
November 2, 2017 10:58
-
-
Save kjnilsson/86d080d5fc0fdfb5dc3fc5a62aecafba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module A | |
let f1 x = () | |
let f2 x = () | |
let doStuff () -> | |
//f2 is still in scope here | |
f1 1 | |
// VS | |
module B | |
let doStuff { Func1 = f1 } = | |
// f2 is not inscope here | |
f1 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment