CI: fix msvc (temporary work around dialogs poping up)

pull/2986/head
Delyan Angelov 2019-12-05 16:08:18 +02:00 committed by Alexander Medvednikov
parent 4ca453b6de
commit 98374ea6fe
1 changed files with 5 additions and 6 deletions

View File

@ -1,9 +1,8 @@
fn C.puts(charptr) int
fn test_cstring(){ fn test_cstring(){
h := c'world' w := c'world'
C.puts(c'hello') hlen := C.strlen(c'hello')
C.puts(h) wlen := C.strlen(w)
assert true assert hlen == 5
assert wlen == 5
} }