Skip to content

Commit 04721c2

Browse files
committed
rename test case
1 parent ff65780 commit 04721c2

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ test/example:
140140
${CELL} -d -t riscv tests/examples/return.cell && ckb-debugger --bin return
141141
${CELL} -d -t riscv tests/examples/named-ret-type.cell && ckb-debugger --bin named-ret-type | grep "0"
142142
${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"
144144
${CELL} -t riscv tests/examples/cell-data.cell && ckb-debugger --bin cell-data
145145
${CELL} -t riscv tests/examples/inputs.cell && ckb-debugger --bin inputs
146146
${CELL} -t riscv tests/examples/outputs.cell && ckb-debugger --bin outputs

tests/examples/method.cell

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
}

0 commit comments

Comments
 (0)