https://github.com/JuliaLang/julia
Raw File
Tip revision: aa1ad7d8ccb2b9e0e198033384c1be8524f2aaaa authored by Isaiah Norton on 30 December 2014, 03:26:19 UTC
Handle undef refs in jl_copy_ast, fixes #9475
Tip revision: aa1ad7d
ccall.jl
ccall_test_func(x) = ccall((:testUcharX, "./libccalltest"), Int32, (UInt8,), x)
@test ccall_test_func(3) == 1
@test ccall_test_func(259) == 1
back to top