Closed
Description
TypeScript Version:
1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217)
Code
class A{
public static get foo(){
return alert("should not execute getter, without accessing it !");
}
}
class B extends A {}
Expected behavior:
Should not alert message above
Actual behavior:
Alerting message above
Link to Playground