v/vlib/v/tests/comptime_if_pkgconfig_test.v

11 lines
140 B
V
Raw Normal View History

fn test_comptime_pkgconfig() {
$if $pkgconfig('mysqlclient') {
assert true
return
} $else {
assert true
return
}
assert false
}