File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ test/example:
140
140
${CELL} -d -t riscv tests/examples/return.cell && ckb-debugger --bin return
141
141
${CELL} -d -t riscv tests/examples/named-ret-type.cell && ckb-debugger --bin named-ret-type | grep " 0"
142
142
${CELL} -d -t riscv tests/examples/func.cell && ckb-debugger --bin func | grep " 999"
143
- ${CELL} -d -t riscv tests/examples/interface .cell && ckb-debugger --bin interface | grep " 0 "
143
+ ${CELL} -d -t riscv tests/examples/method .cell && ckb-debugger --bin method | grep " 100 "
144
144
${CELL} -t riscv tests/examples/cell-data.cell && ckb-debugger --bin cell-data
145
145
${CELL} -t riscv tests/examples/inputs.cell && ckb-debugger --bin inputs
146
146
${CELL} -t riscv tests/examples/outputs.cell && ckb-debugger --bin outputs
Original file line number Diff line number Diff line change
1
+ import (
2
+ "errors"
3
+ "debug"
4
+ )
5
+
6
+ type Buffer table {
7
+ start uint64
8
+ end uint64
9
+ }
10
+ func (b *Buffer) Start() (n uint64, err error) {
11
+ return b.start, errors.None()
12
+ }
13
+ func main() {
14
+ b := Buffer {
15
+ start: 100
16
+ end: 200
17
+ }
18
+ n, _ := b.Start()
19
+ debug.Printf("%d", n)
20
+ return 0
21
+ }
You can’t perform that action at this time.
0 commit comments