10 lines
292 B
Forth
10 lines
292 B
Forth
|
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
|