fix interface test

pull/4170/head
Alexander Medvednikov 2020-03-31 21:05:48 +02:00
parent 050ec5d9e3
commit 2ac074655f
2 changed files with 8 additions and 7 deletions

View File

@ -1,8 +1,7 @@
fn test_cstring(){
w := c'world'
hlen := C.strlen(c'hello')
wlen := C.strlen(w)
assert hlen == 5
assert wlen == 5
fn test_cstring() {
w := c'world'
hlen := C.strlen(c'hello')
wlen := C.strlen(w)
assert hlen == 5
assert wlen == 5
}

View File

@ -22,6 +22,8 @@ fn (d Dog) name() string {
return 'Dog'
}
fn test_todo() {}
/*
interface Speaker {
name ()string