2021-01-09 17:33:28 +00:00
|
|
|
error: positional argument or varargs(*) not allowed after keyword arguments
|
2020-03-06 05:01:27 +00:00
|
|
|
--> $DIR/invalid_macro_args.rs:3:21
|
|
|
|
|
|
|
|
|
3 | #[pyfunction(a = 5, b)]
|
|
|
|
| ^
|
|
|
|
|
2021-01-09 17:33:28 +00:00
|
|
|
error: keyword argument or kwargs(**) is not allowed after kwargs(**)
|
2020-10-01 04:34:54 +00:00
|
|
|
--> $DIR/invalid_macro_args.rs:8:29
|
|
|
|
|
|
|
|
|
8 | #[pyfunction(kwargs = "**", a = 5)]
|
2021-01-09 17:33:28 +00:00
|
|
|
| ^
|