TypeScript/tests/cases/fourslash/completionListInClosedFunction02.ts

13 lines
340 B
TypeScript

/// <reference path="fourslash.ts" />
////function foo(x: string, y: number, z: boolean) {
//// function bar(a: number, b: string, c: typeof /*1*/) {
//// }
////}
verify.completions({
marker: "1",
// Note: `c: typeof c` would be a compile error
includes: ["foo", "x", "y", "z", "bar", "a", "b", "c"],
});