mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
14 lines
197 B
TypeScript
14 lines
197 B
TypeScript
// @strict: true
|
|
// @target: es6
|
|
// @strictPropertyInitialization: false
|
|
|
|
class A {
|
|
#foo: number;
|
|
}
|
|
|
|
class B {
|
|
#foo: number;
|
|
}
|
|
|
|
const b: A = new B(); // Error: Property #foo is missing
|