v2 / vlib / v / tests / comptime / comptime_if_pkgconfig_test.v
10 lines · 10 sloc · 140 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_comptime_pkgconfig() {
2 $if $pkgconfig('mysqlclient') {
3 assert true
4 return
5 } $else {
6 assert true
7 return
8 }
9 assert false
10}
11