aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/tests/comptime_if_pkgconfig_test.v
blob: 77fd35713593165e963f9c36760c6e25684a4437 (plain)
1
2
3
4
5
6
7
8
9
10
fn test_comptime_pkgconfig() {
	$if $pkgconfig('mysqlclient') {
		assert true
		return
	} $else {
		assert true
		return
	}
	assert false
}