Adding regression test

This commit is contained in:
Anders Hejlsberg
2016-05-21 10:41:25 -07:00
parent da0f1e38da
commit b547b5463a

View 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;
}