Files
ValueScript/inputs/passing/bigint/noMix.ts

6 lines
149 B
TypeScript

//! test_output(E: TypeError{"message":"Cannot mix BigInt and other types"})
export default function () {
return 1 + (1n as unknown as number);
}