Files
linux-packaging-mono/external/api-doc-tools/mdoc/mdoc.Test/mdoc.Test.FSharp/AccessibilityTest.fs

10 lines
292 B
Forth
Raw Normal View History

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