mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
12 lines
117 B
V
12 lines
117 B
V
module main
|
|
|
|
import json
|
|
|
|
struct Test {
|
|
id ?string = none
|
|
}
|
|
|
|
fn test_main() {
|
|
assert json.encode(Test{}) == '{}'
|
|
}
|