mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 23:48:02 -05:00
6 lines
149 B
TypeScript
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);
|
|
}
|