mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-11 05:32:14 -05:00
Adding regression test
This commit is contained in:
25
tests/cases/compiler/destructureOptionalParameter.ts
Normal file
25
tests/cases/compiler/destructureOptionalParameter.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
// @strictNullChecks: true
|
||||
// @declaration: true
|
||||
|
||||
declare function f1({ a, b }?: { a: number, b: string }): void;
|
||||
|
||||
function f2({ a, b }: { a: number, b: number } = { a: 0, b: 0 }) {
|
||||
a;
|
||||
b;
|
||||
}
|
||||
|
||||
// Repro from #8681
|
||||
|
||||
interface Type { t: void }
|
||||
interface QueryMetadata { q: void }
|
||||
|
||||
interface QueryMetadataFactory {
|
||||
(selector: Type | string, {descendants, read}?: {
|
||||
descendants?: boolean;
|
||||
read?: any;
|
||||
}): ParameterDecorator;
|
||||
new (selector: Type | string, {descendants, read}?: {
|
||||
descendants?: boolean;
|
||||
read?: any;
|
||||
}): QueryMetadata;
|
||||
}
|
||||
Reference in New Issue
Block a user