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

6 lines
115 B
TypeScript

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