()
| 4071 | |
| 4072 | #[test] |
| 4073 | fn test_if_uniline_allowed_assignment() { |
| 4074 | do_if_uniline_allowed_test( |
| 4075 | "a = 3", |
| 4076 | Statement::Assignment(AssignmentSpan { |
| 4077 | vref: VarRef::new("a", None), |
| 4078 | vref_pos: lc(1, 11), |
| 4079 | expr: expr_integer(3, 1, 15), |
| 4080 | }), |
| 4081 | ); |
| 4082 | } |
| 4083 | |
| 4084 | #[test] |
| 4085 | fn test_if_uniline_allowed_array_assignment() { |
nothing calls this directly
no test coverage detected