()
| 2244 | |
| 2245 | #[test] |
| 2246 | fn test_assignment_errors() { |
| 2247 | do_error_test("a =", "1:4: Missing expression in assignment"); |
| 2248 | do_error_test("a = b 3", "1:7: Unexpected value in expression"); |
| 2249 | do_error_test("a = b, 3", "1:6: Unexpected , in assignment"); |
| 2250 | do_error_test("a = if 3", "1:5: Unexpected keyword in expression"); |
| 2251 | do_error_test("true = 1", "1:1: Unexpected TRUE in statement"); |
| 2252 | } |
| 2253 | |
| 2254 | #[test] |
| 2255 | fn test_builtin_calls() { |
nothing calls this directly
no test coverage detected