v2 / vlib / v / tests / casts / as_cast_literal_test.v
12 lines · 10 sloc · 183 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1interface IExample {}
2
3fn thing(a IExample) bool {
4 return true
5}
6
7fn test_as_cast_with_literals() {
8 assert thing(true)
9 assert thing(123)
10 assert thing(12.3)
11 assert thing('abc')
12}
13