Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AccessibilityTest.fs « mdoc.Test.FSharp « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fd4fb9a18cd6fa45074a0e0b2b148daa47b97ac (plain)
1
2
3
4
5
6
7
8
9
10
module AccessibilityTest

open Accessibility

// The following line is an error because private means
// that it cannot be accessed from another file or module
// let private myPrivateObj = new MyPrivateType()
let internal myInternalObj = new MyInternalType()

let result = myInternalObj.Z