Add test for combined items

This commit is contained in:
Zanie 2023-07-12 11:54:37 -05:00
parent fff291a4de
commit 9eb0752cb4

View file

@ -688,6 +688,9 @@ def func[*Ts](*a: *Ts):
def func[**P](*args: P.args, **kwargs: P.kwargs):
...
def func[T, U: str, *Ts, **P]():
pass
";
insta::assert_debug_snapshot!(ast::Suite::parse(source, "<test>").unwrap());
}