Skip to content

Commit

Permalink
Add failing test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Aug 26, 2022
1 parent 8d7ad8c commit 20432a6
Showing 1 changed file with 26 additions and 0 deletions.
@@ -0,0 +1,26 @@

/// <reference path="./fourslash.ts" />

////declare class GetterFirst {
//// get mask(): any;
//// set mask(value: any);
////}
////export class A extends GetterFirst {
//// /*A*/
////}
////
////declare class SetterFirst {
//// set mask(value: any);
//// get mask(): any;
////}
////export class B extends SetterFirst {
//// /*B*/
////}

for (const marker of test.markers()) {
goTo.marker(marker);
verify.baselineCompletions({
includeCompletionsWithInsertText: true,
includeCompletionsWithClassMemberSnippets: true
});
}

0 comments on commit 20432a6

Please sign in to comment.