mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
//! test_output([Symbol.iterator,{},3])
|
|
|
|
export default function main() {
|
|
const x = { [Symbol.iterator]: 3 };
|
|
|
|
return [Symbol.iterator, x, x[Symbol.iterator]];
|
|
}
|