-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCross.res
41 lines (26 loc) · 973 Bytes
/
Cross.res
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
let crossRef = References.x
// ^ref
let crossRef2 = References.x
module Ref = References
let crossRef3 = References.x
let crossRefWithInterface = ReferencesWithInterface.x
// ^ref
let crossRefWithInterface2 = ReferencesWithInterface.x
module RefWithInterface = ReferencesWithInterface
let crossRefWithInterface3 = ReferencesWithInterface.x
let _ = RenameWithInterface.x
// ^ren RenameWithInterfacePrime
let _ = RenameWithInterface.x
// ^ren xPrime
let typeDef = {TypeDefinition.item: "foobar"}
// ^typ
let _ = DefinitionWithInterface.y
// ^def
type defT = DefinitionWithInterface.t
// ^def
type defT2 = DefinitionWithInterface.t
// ^typ
// DefinitionWithInterface.a
// ^com
let yy = DefinitionWithInterface.Inner.y
// ^def