mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
253 B
15 lines
253 B
8 years ago
|
'use strict';
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
// https://github.com/nodejs/node/issues/11480
|
||
|
// This code should not throw a SyntaxError.
|
||
|
|
||
|
const a = 1;
|
||
|
const b = 1;
|
||
|
let c;
|
||
|
|
||
|
((a + 1), {c} = b);
|
||
|
|
||
|
assert.strictEqual(c, undefined);
|