mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
9 lines
214 B
V
9 lines
214 B
V
module pref
|
|
|
|
fn test_check_parametes() {
|
|
// reproducing issue https://github.com/vlang/v/issues/13983
|
|
_, cmd := parse_args_and_show_errors(['help'], [''], true)
|
|
// no command found from args
|
|
assert cmd == ''
|
|
}
|