https://www.typescriptlang.org/play/index.html?ts=3.8.0-pr-30829-97#code/MYGwhgzhAEDC0G8BQ1oGIBmB7LAuaEALgE4CWAdgOYDcSK0ARuABYAUAlIvaoc6RADpMOWqgC+SMUA ```ts // @strictPropertyInitialization: true // @strictNullChecks: true class C { #foo: string; blah() { this.#foo; } } ``` **Expected** ``` Property 'foo' has no initializer and is not definitely assigned in the constructor. ``` **Actual** No error