summaryrefslogtreecommitdiff
path: root/src/class-fields/propname-error-static/cls-expr-static-string-name.template
diff options
context:
space:
mode:
Diffstat (limited to 'src/class-fields/propname-error-static/cls-expr-static-string-name.template')
-rw-r--r--src/class-fields/propname-error-static/cls-expr-static-string-name.template22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/class-fields/propname-error-static/cls-expr-static-string-name.template b/src/class-fields/propname-error-static/cls-expr-static-string-name.template
deleted file mode 100644
index 6c1a225ed..000000000
--- a/src/class-fields/propname-error-static/cls-expr-static-string-name.template
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (C) 2017 Valerie Young. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-esid: sec-class-definitions-static-semantics-early-errors
-path: language/expressions/class/fields-string-name-
-name: early error -- PropName of StringLiteral is forbidden
-negative:
- type: SyntaxError
- phase: early
-info: |
- Static Semantics: PropName
- ...
- LiteralPropertyName : StringLiteral
- Return the String value whose code units are the SV of the StringLiteral.
----*/
-
-throw "Test262: This statement should not be evaluated.";
-
-var C = class {
- static '/*{ propname }*/';
-};