aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/fmt/tests/asserts_keep.vv
blob: 999c1feae687f802542773cd05feb746e3ce2dc7 (plain)
1
2
3
4
5
6
fn test_abc() {
	assert 2 < 3
	assert 2 == 2
	assert 'abc' == 'abc'
	assert 'abc'.len == 3
}