TypeScript/tests/baselines/reference/parameterPropertyReferencingOtherParameter.types
2014-08-15 14:37:48 -07:00

11 lines
208 B
Plaintext

=== tests/cases/compiler/parameterPropertyReferencingOtherParameter.ts ===
class Foo {
>Foo : Foo
constructor(public x: number, public y: number = x) { }
>x : number
>y : number
>x : number
}