mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
// test_output! E: TypeError{"message":"Cannot mix BigInt and other types"}
|
|
|
|
export default function () {
|
|
return 1 + (1n as unknown as number);
|
|
}
|