Files
ValueScript/inputs/passing/exceptions/throwError.ts
2023-05-31 12:18:32 +10:00

6 lines
111 B
TypeScript

//! test_error(Error{"message":"Test error"})
export default function () {
throw new Error("Test error");
}