1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/cast_int_to_interface_test.v

20 lines
290 B
V

interface Any {}
fn return_any(val Any) ?Any {
return val
}
fn test_cast_int_to_interface() {
code := 200
if an := return_any(code) {
if an is int {
println('an is an int!')
} else {
println('an is not an int!')
}
assert '$an' == 'Any(200)'
} else {
assert false
}
}