v2 / vlib / v / checker / tests / run / json_encode_generic_interface.vv
11 lines · 8 sloc · 126 bytes · 42f890983c383187ca5bf73b5eda57e2cf194f58
Raw
1import json
2
3interface Interface {}
4
5struct Result[T] {
6 data []T
7}
8
9fn main() {
10 println(json.encode(Result[Interface]{}))
11}
12