conf/conf_test.v

11 lines
148 B
V

module conf
struct WrongTypeConfig {
f map[string]string
}
fn test_wrong_type() {
conf := load[WrongTypeConfig]() or { return }
assert false
}