v2 / vlib / v / tests / comptime / comptime_for_mod_name_test.v
10 lines · 9 sloc · 151 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1import net.http
2
3fn test_main() {
4 mut count := 0
5 $for method_val in http.Method.values {
6 println(method_val.name)
7 count++
8 }
9 assert count > 0
10}
11