summaryrefslogtreecommitdiff
path: root/src/class-fields/propname-error-static/cls-decl-static-string-name.template
diff options
context:
space:
mode:
Diffstat (limited to 'src/class-fields/propname-error-static/cls-decl-static-string-name.template')
-rw-r--r--src/class-fields/propname-error-static/cls-decl-static-string-name.template22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/class-fields/propname-error-static/cls-decl-static-string-name.template b/src/class-fields/propname-error-static/cls-decl-static-string-name.template
new file mode 100644
index 000000000..f08d3cb34
--- /dev/null
+++ b/src/class-fields/propname-error-static/cls-decl-static-string-name.template
@@ -0,0 +1,22 @@
+// 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/statements/class/fields-string-name-
+name: early error -- PropName of StringLiteral is forbidden value
+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.";
+
+class C {
+ static '/*{ propname }*/';
+}