blob: 9f003461e85858a21813a6dcff3634f824dcb144 [file] [log] [blame] [edit]
// Copyright (C) 2020 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: static is a valid name of a static field
info: |
ClassElement:
...
static FieldDefinition ;
template: default
includes: [propertyHelper.js]
features: [class-static-fields-public]
---*/
//- elements
static static = "test262";
//- assertions
verifyProperty(C, "static", {
value: "test262",
enumerable: true,
writable: true,
configurable: true
});