Test case: ```Python def foo(a: int, *, b: str) -> None: pass def bar(a: int, *x, b: str) -> None: pass foo(1) bar(1) ```