v2 / vlib / v / tests / comptime / comptime_accessor_helper / helper.v
5 lines · 4 sloc · 104 bytes · 8b5f74e6a7b52c1100cb52ef2832fd0c090fb407
Raw
1module comptime_accessor_helper
2
3pub fn zero_option_payload[T](x ?T) {
4 _ := typeof(x).payload_type{}
5}
6