You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes a bug in the missingStructuralDirective diagnostic where structural directives with missing imports were not reported when the element using the structural directive contained other directives
Fixes#64467
PR Close#64470
Copy file name to clipboardExpand all lines: packages/compiler-cli/src/ngtsc/typecheck/extended/test/checks/missing_structural_directive/missing_structural_directive_spec.ts
+120Lines changed: 120 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -337,5 +337,125 @@ runInEachFileSystem(() => {
337
337
338
338
// What matters is that we don't get the missing structural directive diagnostic.
339
339
});
340
+
341
+
it('should produce a warning when missing structural directive is used alongside an imported directive',()=>{
0 commit comments