Last active
August 29, 2015 14:18
-
-
Save chkn/f69d10d899fc2dd20727 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
open System | |
open System.Collections.Generic | |
type Foo() = | |
let list = List<obj>() | |
member x.List = list | |
type Bar() = | |
let doSomething (foo : Foo) = | |
let inner() = | |
foo.List.Count | |
inner() |
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
open System | |
open System.Collections.Generic | |
type Bar() = | |
let doSomething (foo : Foo) = | |
let inner() = | |
foo.List.Count | |
inner() | |
and Foo() = | |
let list = List<obj>() | |
member x.List = list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment