外觀
禁止重新賦值類別變數。
ClassDeclaration 會建立一個可以重新賦值的變數,但在大多數情況下重新賦值是錯誤的。
ClassDeclaration
class A {} A = 123; let a = new A(); // Error