File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed
unison-src/transcripts/idempotent Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change
1
+ ``` ucm
2
+ scratch/main> builtins.mergeio lib.builtin
3
+
4
+ Done.
5
+ ```
6
+
7
+ ``` unison :error
8
+ type Foo = Bar Nat
9
+
10
+ foo : Foo -> Nat
11
+ foo x =
12
+ (Barr n) = x
13
+ n
14
+ ```
15
+
16
+ ``` ucm :added-by-ucm
17
+ Loading changes detected in scratch.u.
18
+
19
+
20
+ ❓
21
+
22
+ I couldn't resolve any of these symbols:
23
+
24
+ 5 | (Barr n) = x
25
+
26
+
27
+ Symbol Suggestions
28
+
29
+ Barr No matches
30
+ ```
31
+
32
+ ``` unison :error
33
+ type Foo = Bar Nat
34
+
35
+ foo : Foo -> Nat
36
+ foo x =
37
+ b@(Barr n) = x
38
+ n
39
+ ```
40
+
41
+ ``` ucm :added-by-ucm
42
+ Loading changes detected in scratch.u.
43
+
44
+
45
+ ❓
46
+
47
+ I couldn't resolve any of these symbols:
48
+
49
+ 5 | b@(Barr n) = x
50
+
51
+
52
+ Symbol Suggestions
53
+
54
+ Barr No matches
55
+ ```
You can’t perform that action at this time.
0 commit comments