Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wrongConstModule.js « testLib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 901892ce0943611ec1f4d9b15fa5e10b2035f20f (plain)
1
2
3
4
// Assigning to a const should fail
const a = "a";

a = "b";