Skip to content

Commit 8aeff70

Browse files
Fix a test so that we don't get duplicate declaration errors.
1 parent 33028d5 commit 8aeff70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cases/conformance/es6/Symbols/symbolDeclarationEmit11.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//@declaration: true
33
class C {
44
static [Symbol.iterator] = 0;
5-
static [Symbol.toPrimitive]() { }
5+
static [Symbol.isConcatSpreadable]() { }
66
static get [Symbol.toPrimitive]() { return ""; }
77
static set [Symbol.toPrimitive](x) { }
88
}

0 commit comments

Comments
 (0)