JS: Add failing test for assigning a non-SourceNode to a type annotated-value

This commit is contained in:
Asger F
2025-04-30 14:32:58 +02:00
parent 167f752301
commit 6e82b6eb1f

View File

@@ -0,0 +1,5 @@
import * as express from 'express';
function t1(e) {
var req: express.Request = e; // $ MISSING: hasUnderlyingType='express'.Request
}