mirror of
https://github.com/vlang/v.git
synced 2025-08-05 10:47:11 -04:00
13 lines
137 B
V
13 lines
137 B
V
// vtest vflags: -w
|
|
module main
|
|
|
|
import json
|
|
|
|
struct Test {
|
|
id ?string = none
|
|
}
|
|
|
|
fn test_main() {
|
|
assert json.encode(Test{}) == '{}'
|
|
}
|