TypeScript/tests/baselines/reference/unknownTypeArgOnCall.errors.txt

14 lines
387 B
Plaintext
Raw Normal View History

tests/cases/compiler/unknownTypeArgOnCall.ts(7,17): error TS2304: Cannot find name 'Uhhhh'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/unknownTypeArgOnCall.ts (1 errors) ====
class Foo<T> {
public clone<U>() {
return null;
}
}
var f = new Foo<number>();
var r = f.clone<Uhhhh>()
~~~~~
!!! error TS2304: Cannot find name 'Uhhhh'.
2014-07-13 01:04:16 +02:00